summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-14 03:52:18 +0100
committerGitHub <noreply@github.com>2018-11-14 03:52:18 +0100
commit70f189d7af3eea0123963f781e6a579c8f4725bd (patch)
tree82e03c9e4df7286c1944f40d4abe2f3a0d876426 /src/core/hle/kernel/process.h
parentMerge pull request #1682 from lioncash/audio (diff)
parentvm_manager: Unstub GetTotalHeapUsage() (diff)
downloadyuzu-70f189d7af3eea0123963f781e6a579c8f4725bd.tar
yuzu-70f189d7af3eea0123963f781e6a579c8f4725bd.tar.gz
yuzu-70f189d7af3eea0123963f781e6a579c8f4725bd.tar.bz2
yuzu-70f189d7af3eea0123963f781e6a579c8f4725bd.tar.lz
yuzu-70f189d7af3eea0123963f781e6a579c8f4725bd.tar.xz
yuzu-70f189d7af3eea0123963f781e6a579c8f4725bd.tar.zst
yuzu-70f189d7af3eea0123963f781e6a579c8f4725bd.zip
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r--src/core/hle/kernel/process.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 8d2616c79..f79f6d7a5 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -292,17 +292,6 @@ private:
u32 allowed_thread_priority_mask = 0xFFFFFFFF;
u32 is_virtual_address_memory_enabled = 0;
- // Memory used to back the allocations in the regular heap. A single vector is used to cover
- // the entire virtual address space extents that bound the allocations, including any holes.
- // This makes deallocation and reallocation of holes fast and keeps process memory contiguous
- // in the emulator address space, allowing Memory::GetPointer to be reasonably safe.
- std::shared_ptr<std::vector<u8>> heap_memory;
-
- // The left/right bounds of the address space covered by heap_memory.
- VAddr heap_start = 0;
- VAddr heap_end = 0;
- u64 heap_used = 0;
-
/// The Thread Local Storage area is allocated as processes create threads,
/// each TLS area is 0x200 bytes, so one page (0x1000) is split up in 8 parts, and each part
/// holds the TLS for a specific thread. This vector contains which parts are in use for each