mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-17 06:18:31 -05:00
svc: Specify handle value in thread's name
Allows the handle to be seen alongside the entry point.
This commit is contained in:
@ -102,6 +102,11 @@ public:
|
||||
std::string GetName() const override {
|
||||
return name;
|
||||
}
|
||||
|
||||
void SetName(std::string new_name) {
|
||||
name = std::move(new_name);
|
||||
}
|
||||
|
||||
std::string GetTypeName() const override {
|
||||
return "Thread";
|
||||
}
|
||||
|
Reference in New Issue
Block a user