aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/shared_memory.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-08-27 19:43:55 -0400
committerbunnei <bunneidev@gmail.com>2015-08-27 19:43:55 -0400
commit2978b5fbc8fe7d5bd0824aa6a5c97cb5237e0305 (patch)
tree1c9a5352790d3fea47582013ad5a160781f59cf8 /src/core/hle/kernel/shared_memory.h
parentc5a4025b6581c1c64c2761d09510c5827eaada05 (diff)
parent12390eb155c055884f183cc547473a1dd92ff667 (diff)
Merge pull request #1075 from yuriks/ControlMem-fixes
Fix heap-management regressions
Diffstat (limited to 'src/core/hle/kernel/shared_memory.h')
-rw-r--r--src/core/hle/kernel/shared_memory.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/shared_memory.h b/src/core/hle/kernel/shared_memory.h
index 7a2922776..35b550d12 100644
--- a/src/core/hle/kernel/shared_memory.h
+++ b/src/core/hle/kernel/shared_memory.h
@@ -61,6 +61,8 @@ public:
/// Address of shared memory block in the process.
VAddr base_address;
+ /// Fixed address to allow mapping to. Used for blocks created from the linear heap.
+ VAddr fixed_address;
/// Size of the memory block. Page-aligned.
u32 size;
/// Permission restrictions applied to the process which created the block.