- 论坛徽章:
- 0
|
一个进程的两个线程之间如何发送信号?如下程序,我的主线程(进程)发送一个SIGTERM给它创建的子线程,为什么结果不行呢?
- #include <stdio.h>
- #include <signal.h>
- #include <errno.h>
- #include <pthread.h>
- void term_func(int signum)
- {
- printf("Thread %lu recv the signal SIGTERM\n", pthread_self());
- }
-
- void *child_func(void *arg)
- {
- sigset_t myset;
- sigemptyset(&myset);
- sigaddset(&myset, SIGTERM);
- pthread_sigmask(SIG_UNBLOCK, &myset, NULL);
- while(1)
- {
- printf("In thread %lu\n", pthread_self());
- pause();
- }
- }
- int main()
- {
- pthread_t tid, mytid;
- int iRet, i;
- sigset_t myset;
-
- mytid = pthread_self();
- signal(SIGTERM, term_func);
-
- sigemptyset(&myset);
- sigaddset(&myset, SIGTERM);
- pthread_sigmask(SIG_BLOCK, &myset, NULL);
-
- iRet = pthread_create(&tid, NULL, child_func, NULL);
- if(iRet != 0)
- {
- printf("Create thread error(%d):%s\n", errno, strerror(errno));
- return -1;
- }
- printf("Thread %lu create the thread %lu\n", mytid, tid);
- for(i = 0; i < 10; i++)
- {
- sleep(1);
- raise(SIGTERM);
- printf("Thread %lu send SIGTERM to thread %lu\n", mytid, tid);
- }
- return 0;
- }
复制代码
结果如下:
- Thread 3086260432 create the thread 3086257040
- In thread 3086257040
- Thread 3086260432 send SIGTERM to thread 3086257040
- Thread 3086260432 send SIGTERM to thread 3086257040
- Thread 3086260432 send SIGTERM to thread 3086257040
- Thread 3086260432 send SIGTERM to thread 3086257040
- Thread 3086260432 send SIGTERM to thread 3086257040
- Thread 3086260432 send SIGTERM to thread 3086257040
- Thread 3086260432 send SIGTERM to thread 3086257040
复制代码 |
|