1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef _BITS_SIGTHREAD_H
- #define _BITS_SIGTHREAD_H 1
- #if !defined _SIGNAL_H && !defined _PTHREAD_H
- # error "Never include this file directly. Use <pthread.h> instead"
- #endif
- extern int pthread_sigmask (int __how,
- __const __sigset_t *__restrict __newmask,
- __sigset_t *__restrict __oldmask)__THROW;
- extern int pthread_kill (pthread_t __thread_id, int __signo) __THROW;
- #endif
|