thread_helper.h 246 B

123456789101112
  1. #ifndef _THREAD_HELPER_H
  2. #define _THREAD_HELPER_H
  3. #ifndef _GNU_SOURCE
  4. # define _GNU_SOURCE /* for pthread_*_np */
  5. #endif
  6. #include <pthread.h>
  7. __typeof__(pthread_setname_np)(*pthread_setname) = pthread_setname_np;
  8. #endif /* _THREAD_HELPER_H */