View | Details | Raw Unified | Return to bug 242564
Collapse All | Expand All

(-)wscript (-1 / +1 lines)
Lines 296-300 Link Here
296
        'desc': 'BSD API for setting thread name',
296
        'desc': 'BSD API for setting thread name',
297
        'deps': '!(glibc-thread-name || osx-thread-name)',
297
        'deps': '!(glibc-thread-name || osx-thread-name)',
298
        'func': check_statement('pthread.h',
298
        'func': check_statement(['pthread.h', 'pthread_np.h'],
299
                                'pthread_set_name_np(pthread_self(), "ducks")',
299
                                'pthread_set_name_np(pthread_self(), "ducks")',
300
                                use=['pthreads']),
300
                                use=['pthreads']),
(-)osdep/threads.c (+3 lines)
Lines 21-24 Link Here
21
21
22
#include "config.h"
22
#include "config.h"
23
#ifdef HAVE_BSD_THREAD_NAME
24
#	include <pthread_np.h>
25
#endif
23
26
24
#include "threads.h"
27
#include "threads.h"

Return to bug 242564