summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_memory_block_manager.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-13 01:19:07 +0100
committerLiam <byteslice@airmail.cc>2024-01-13 01:19:07 +0100
commit2f0b57ca13fb91730d7e210f6f4504357ef6cd0a (patch)
treeaaa14bbfc0ce10de34cefb28fb719946b4c96aa3 /src/core/hle/kernel/k_memory_block_manager.h
parentkernel: fix debugger and process list lifetime (diff)
downloadyuzu-2f0b57ca13fb91730d7e210f6f4504357ef6cd0a.tar
yuzu-2f0b57ca13fb91730d7e210f6f4504357ef6cd0a.tar.gz
yuzu-2f0b57ca13fb91730d7e210f6f4504357ef6cd0a.tar.bz2
yuzu-2f0b57ca13fb91730d7e210f6f4504357ef6cd0a.tar.lz
yuzu-2f0b57ca13fb91730d7e210f6f4504357ef6cd0a.tar.xz
yuzu-2f0b57ca13fb91730d7e210f6f4504357ef6cd0a.tar.zst
yuzu-2f0b57ca13fb91730d7e210f6f4504357ef6cd0a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_memory_block_manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_memory_block_manager.h b/src/core/hle/kernel/k_memory_block_manager.h
index cb7b6f430..377628504 100644
--- a/src/core/hle/kernel/k_memory_block_manager.h
+++ b/src/core/hle/kernel/k_memory_block_manager.h
@@ -85,11 +85,11 @@ public:
public:
KMemoryBlockManager();
- using HostUnmapCallback = std::function<void(Common::ProcessAddress, u64)>;
+ using BlockCallback = std::function<void(Common::ProcessAddress, u64)>;
Result Initialize(KProcessAddress st, KProcessAddress nd,
KMemoryBlockSlabManager* slab_manager);
- void Finalize(KMemoryBlockSlabManager* slab_manager, HostUnmapCallback&& host_unmap_callback);
+ void Finalize(KMemoryBlockSlabManager* slab_manager, BlockCallback&& block_callback);
iterator end() {
return m_memory_block_tree.end();