Previous Next Contents

7.5  线程中的信号处理

7.5.1  概念

7.5.2  pthread_sigmask

7.5.3  pthread_kill 和 sigwait

===============================================================================
       #include <pthread.h>
       #include <signal.h>

       int pthread_kill (pthread_t thread, int signo);
       int sigwait (const sigset_t *set, int *sig);
===============================================================================





Previous Next Contents