mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 21:42:47 +01:00
Teach RenameThread to work on OSX
This commit is contained in:
parent
36fe96581f
commit
92f6fb4cfa
@ -1287,6 +1287,8 @@ void RenameThread(const char* name)
|
|||||||
// on FreeBSD or OpenBSD first. When verified the '0 &&' part can be
|
// on FreeBSD or OpenBSD first. When verified the '0 &&' part can be
|
||||||
// removed.
|
// removed.
|
||||||
pthread_set_name_np(pthread_self(), name);
|
pthread_set_name_np(pthread_self(), name);
|
||||||
|
#elif defined(MAC_OSX)
|
||||||
|
pthread_setname_np(name);
|
||||||
#else
|
#else
|
||||||
// Prevent warnings for unused parameters...
|
// Prevent warnings for unused parameters...
|
||||||
(void)name;
|
(void)name;
|
||||||
|
Loading…
Reference in New Issue
Block a user