diff options
| author | bunnei <bunneidev@gmail.com> | 2016-01-14 22:27:36 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2016-01-14 22:27:36 -0500 |
| commit | 190b1bbf1f016af01168d01be851b5829ee4a149 (patch) | |
| tree | d55fd4d616c0e516803fc64c9eacdd025a9dc8f2 /src/core/hle/kernel/shared_memory.h | |
| parent | 6a261e825c0c60e60038c8093f2da53845b70bf7 (diff) | |
| parent | d90d5a0ee6b9c08baacd56cb88159d20bbfdb2f0 (diff) | |
Merge pull request #1327 from Subv/unmap_memblock
HLE/SVC: Implement UnmapMemoryBlock.
Diffstat (limited to 'src/core/hle/kernel/shared_memory.h')
| -rw-r--r-- | src/core/hle/kernel/shared_memory.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/kernel/shared_memory.h b/src/core/hle/kernel/shared_memory.h index 35b550d12..b51049ad0 100644 --- a/src/core/hle/kernel/shared_memory.h +++ b/src/core/hle/kernel/shared_memory.h @@ -53,6 +53,13 @@ public: ResultCode Map(VAddr address, MemoryPermission permissions, MemoryPermission other_permissions); /** + * Unmaps a shared memory block from the specified address in system memory + * @param address Address in system memory where the shared memory block is mapped + * @return Result code of the unmap operation + */ + ResultCode Unmap(VAddr address); + + /** * Gets a pointer to the shared memory block * @param offset Offset from the start of the shared memory block to get pointer * @return Pointer to the shared memory block from the specified offset |
