svc: Specify handle value in thread's name
Allows the handle to be seen alongside the entry point.
This commit is contained in:
parent
09caf8a756
commit
3283aa1e20
2 changed files with 10 additions and 2 deletions
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue