diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/pthread.h | 5 | ||||
-rw-r--r-- | include/pthreadP.h | 1 | ||||
-rw-r--r-- | include/signal.h | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/include/pthread.h b/include/pthread.h index 858c869a16..7bbd36ccc7 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -1,3 +1,5 @@ +#ifndef _INCLUDE_PTHREAD_H +#define _INCLUDE_PTHREAD_H 1 #include_next <pthread.h> #ifndef _ISOMAC @@ -11,6 +13,9 @@ extern int __pthread_barrier_init (pthread_barrier_t *__restrict __barrier, extern int __pthread_barrier_wait (pthread_barrier_t *__barrier) __THROWNL __nonnull ((1)); +extern pthread_t __pthread_self (void) __THROW attribute_hidden; + /* This function is called to initialize the pthread library. */ extern void __pthread_initialize (void) __attribute__ ((weak)); #endif +#endif diff --git a/include/pthreadP.h b/include/pthreadP.h new file mode 100644 index 0000000000..651d94aaa4 --- /dev/null +++ b/include/pthreadP.h @@ -0,0 +1 @@ +#include <nptl/pthreadP.h> diff --git a/include/signal.h b/include/signal.h index 293258ad65..d48113fcd7 100644 --- a/include/signal.h +++ b/include/signal.h @@ -59,5 +59,7 @@ extern __typeof (__sigaction) __sigaction attribute_hidden; extern __typeof (__libc_sigaction) __libc_sigaction attribute_hidden; # endif +extern typeof (pthread_kill) __pthread_kill attribute_hidden; + # endif /* _ISOMAC */ #endif /* signal.h */ |