1 /* $NetBSD: pthread.h,v 1.1 2025/10/26 20:48:28 christos Exp $ */ 2 3 #ifndef COMPAT_PTHREAD_H 4 #define COMPAT_PTHREAD_H 5 6 #include <sys/mutex.h> 7 #include <pthread_types.h> 8 9 int __compat_pthread_setname_np(pthread_t, const char *, void *) 10 __dso_hidden; 11 int __pthread_setname_np120(pthread_t, const char *, ...); 12 #endif 13