perf(threads): implement adjust_thread_priority for macOS and add set_thread_name (#4605)
This commit is contained in:
parent
f879294449
commit
3a12f96a86
17 changed files with 71 additions and 1 deletions
|
|
@ -327,6 +327,10 @@ namespace platf {
|
|||
// Unimplemented
|
||||
}
|
||||
|
||||
void set_thread_name(const std::string &name) {
|
||||
pthread_setname_np(pthread_self(), name.c_str());
|
||||
}
|
||||
|
||||
void enable_mouse_keys() {
|
||||
// Unimplemented
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue