mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
fix thread setname on NetBSD
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
fd73aab7d0
commit
5931cb59ab
@ -123,6 +123,8 @@ namespace util
|
||||
pthread_setname_np(name);
|
||||
#elif defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||
pthread_set_name_np(pthread_self(), name);
|
||||
#elif defined(__NetBSD__)
|
||||
pthread_setname_np(pthread_self(), "%s", (void *)name);
|
||||
#else
|
||||
pthread_setname_np(pthread_self(), name);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user