svc: Specify handle value in thread's name

Allows the handle to be seen alongside the entry point.
This commit is contained in:
Lioncash 2019-04-15 15:54:25 -04:00
parent 09caf8a756
commit 3283aa1e20
2 changed files with 10 additions and 2 deletions

View file

@ -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";
}