summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/shared_memory.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2016-04-19 22:56:11 +0200
committerSubv <subv2112@gmail.com>2016-05-13 03:01:59 +0200
commitd261984f5460ca700c372299df64d47f32e199b9 (patch)
tree7529ed91491dde2b7864fbd9eb68ff3682a93caf /src/core/hle/kernel/shared_memory.cpp
parentAPT: Move the shared font loading and relocation functions to their own subdirectory services/apt/bcfnt. (diff)
downloadyuzu-d261984f5460ca700c372299df64d47f32e199b9.tar
yuzu-d261984f5460ca700c372299df64d47f32e199b9.tar.gz
yuzu-d261984f5460ca700c372299df64d47f32e199b9.tar.bz2
yuzu-d261984f5460ca700c372299df64d47f32e199b9.tar.lz
yuzu-d261984f5460ca700c372299df64d47f32e199b9.tar.xz
yuzu-d261984f5460ca700c372299df64d47f32e199b9.tar.zst
yuzu-d261984f5460ca700c372299df64d47f32e199b9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/shared_memory.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/kernel/shared_memory.cpp b/src/core/hle/kernel/shared_memory.cpp
index 2b6007caa..74947f023 100644
--- a/src/core/hle/kernel/shared_memory.cpp
+++ b/src/core/hle/kernel/shared_memory.cpp
@@ -41,6 +41,11 @@ SharedPtr<SharedMemory> SharedMemory::Create(SharedPtr<Process> owner_process, u
shared_memory->linear_heap_phys_address = Memory::FCRAM_PADDR + memory_region->base + shared_memory->backing_block_offset;
+ // Increase the amount of used linear heap memory for the owner process.
+ if (shared_memory->owner_process != nullptr) {
+ shared_memory->owner_process->linear_heap_used += size;
+ }
+
// Refresh the address mappings for the current process.
if (Kernel::g_current_process != nullptr) {
Kernel::g_current_process->vm_manager.RefreshMemoryBlockMappings(linheap_memory.get());