Teach RenameThread to work on OSX

This commit is contained in:
Gavin Andresen 2012-07-16 20:57:26 -04:00
parent 36fe96581f
commit 92f6fb4cfa
1 changed files with 2 additions and 0 deletions

View File

@ -1287,6 +1287,8 @@ void RenameThread(const char* name)
// on FreeBSD or OpenBSD first. When verified the '0 &&' part can be
// removed.
pthread_set_name_np(pthread_self(), name);
#elif defined(MAC_OSX)
pthread_setname_np(name);
#else
// Prevent warnings for unused parameters...
(void)name;