summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-08-07 10:16:29 +0200
committerbunnei <bunneidev@gmail.com>2021-12-07 01:39:16 +0100
commit07690572f777c66f649110db780f556186f5fea8 (patch)
tree9725734226c50f11deb2fee16f8c40c177f9e262
parentcore: hle: kernel: DisableDispatch on suspend threads. (diff)
downloadyuzu-07690572f777c66f649110db780f556186f5fea8.tar
yuzu-07690572f777c66f649110db780f556186f5fea8.tar.gz
yuzu-07690572f777c66f649110db780f556186f5fea8.tar.bz2
yuzu-07690572f777c66f649110db780f556186f5fea8.tar.lz
yuzu-07690572f777c66f649110db780f556186f5fea8.tar.xz
yuzu-07690572f777c66f649110db780f556186f5fea8.tar.zst
yuzu-07690572f777c66f649110db780f556186f5fea8.zip
-rw-r--r--src/core/hle/kernel/k_auto_object.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_auto_object.h b/src/core/hle/kernel/k_auto_object.h
index e4fcdbc67..165b76747 100644
--- a/src/core/hle/kernel/k_auto_object.h
+++ b/src/core/hle/kernel/k_auto_object.h
@@ -170,6 +170,10 @@ public:
}
}
+ const std::string& GetName() const {
+ return name;
+ }
+
private:
void RegisterWithKernel();
void UnregisterWithKernel();