summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-03 05:07:38 +0200
committerbunnei <bunneidev@gmail.com>2018-04-03 05:50:58 +0200
commit99ae9dbf490c599afee21b1dc47de51734381a64 (patch)
tree1855ffdc9791a4f7cb9953a81604d069531edb04 /src/core/hle/kernel
parentservice: Add friend:u interface. (diff)
downloadyuzu-99ae9dbf490c599afee21b1dc47de51734381a64.tar
yuzu-99ae9dbf490c599afee21b1dc47de51734381a64.tar.gz
yuzu-99ae9dbf490c599afee21b1dc47de51734381a64.tar.bz2
yuzu-99ae9dbf490c599afee21b1dc47de51734381a64.tar.lz
yuzu-99ae9dbf490c599afee21b1dc47de51734381a64.tar.xz
yuzu-99ae9dbf490c599afee21b1dc47de51734381a64.tar.zst
yuzu-99ae9dbf490c599afee21b1dc47de51734381a64.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/shared_memory.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/core/hle/kernel/shared_memory.cpp b/src/core/hle/kernel/shared_memory.cpp
index 88230bdd9..bc99993c8 100644
--- a/src/core/hle/kernel/shared_memory.cpp
+++ b/src/core/hle/kernel/shared_memory.cpp
@@ -120,18 +120,6 @@ ResultCode SharedMemory::Map(Process* target_process, VAddr address, MemoryPermi
return ERR_WRONG_PERMISSION;
}
- // TODO(Subv): The same process that created a SharedMemory object
- // can not map it in its own address space unless it was created with addr=0, result 0xD900182C.
-
- if (address != 0) {
- // TODO(shinyquagsire23): Check for virtual/mappable memory here too?
- if (address >= Memory::HEAP_VADDR && address < Memory::HEAP_VADDR_END) {
- LOG_ERROR(Kernel, "cannot map id=%u, address=0x%lx name=%s, invalid address",
- GetObjectId(), address, name.c_str());
- return ERR_INVALID_ADDRESS;
- }
- }
-
VAddr target_address = address;
if (base_address == 0 && target_address == 0) {