mirror of https://github.com/mpv-player/mpv
osdep: NetBSD pthread_setname_np()
From: bugmen0t on github Fixes #1207.
This commit is contained in:
parent
7eb047b241
commit
2e81698d28
|
@ -993,6 +993,7 @@ cat > $TMPC << EOF
|
|||
#define HAVE_GLIBC_THREAD_NAME (!!__GLIBC__)
|
||||
#define HAVE_OSX_THREAD_NAME 0
|
||||
#define HAVE_BSD_THREAD_NAME 0
|
||||
#define HAVE_NETBSD_THREAD_NAME 0
|
||||
|
||||
#define DEFAULT_CDROM_DEVICE "/dev/cdrom"
|
||||
#define DEFAULT_DVD_DEVICE "/dev/dvd"
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#if HAVE_BSD_THREAD_NAME
|
||||
#include <pthread_np.h>
|
||||
#endif
|
||||
|
||||
#include "threads.h"
|
||||
#include "timer.h"
|
||||
|
||||
|
@ -56,6 +60,8 @@ void mpthread_set_name(const char *name)
|
|||
}
|
||||
#elif HAVE_BSD_THREAD_NAME
|
||||
pthread_set_name_np(pthread_self(), tname);
|
||||
#elif HAVE_NETBSD_THREAD_NAME
|
||||
pthread_setname_np(pthread_self(), "%s", (void *)tname);
|
||||
#elif HAVE_OSX_THREAD_NAME
|
||||
pthread_setname_np(tname);
|
||||
#endif
|
||||
|
|
9
wscript
9
wscript
|
@ -227,9 +227,16 @@ iconv support use --disable-iconv.",
|
|||
'name': 'bsd-thread-name',
|
||||
'desc': 'BSD API for setting thread name',
|
||||
'deps_neg': [ 'glibc-thread-name', 'osx-thread-name' ],
|
||||
'func': check_statement('pthread.h',
|
||||
'func': check_statement(['pthread.h', 'pthread_np.h'],
|
||||
'pthread_set_name_np(pthread_self(), "ducks")',
|
||||
use=['pthreads']),
|
||||
}, {
|
||||
'name': 'netbsd-thread-name',
|
||||
'desc': 'NetBSD API for setting thread name',
|
||||
'deps_neg': [ 'glibc-thread-name', 'osx-thread-name', 'bsd-thread-name' ],
|
||||
'func': check_statement('pthread.h',
|
||||
'pthread_setname_np(pthread_self(), "%s", (void *)"ducks")',
|
||||
use=['pthreads']),
|
||||
}, {
|
||||
'name': 'bsd-fstatfs',
|
||||
'desc': "BSD's fstatfs()",
|
||||
|
|
Loading…
Reference in New Issue