免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3658 | 回复: 6
打印 上一主题 下一主题

[C] 线程间信号问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-05-14 17:45 |只看该作者 |倒序浏览
一个进程的两个线程之间如何发送信号?如下程序,我的主线程(进程)发送一个SIGTERM给它创建的子线程,为什么结果不行呢?

  1. #include <stdio.h>
  2. #include <signal.h>
  3. #include <errno.h>
  4. #include <pthread.h>
  5. void term_func(int signum)
  6. {
  7.         printf("Thread %lu recv the signal SIGTERM\n", pthread_self());
  8. }

  9. void *child_func(void *arg)
  10. {
  11.         sigset_t myset;
  12.         sigemptyset(&myset);
  13.         sigaddset(&myset, SIGTERM);
  14.         pthread_sigmask(SIG_UNBLOCK, &myset, NULL);
  15.         while(1)
  16.         {
  17.                 printf("In thread %lu\n", pthread_self());
  18.                 pause();
  19.         }
  20. }
  21. int main()
  22. {
  23.         pthread_t tid, mytid;
  24.         int iRet, i;
  25.         sigset_t myset;

  26.         mytid = pthread_self();
  27.         signal(SIGTERM, term_func);

  28.         sigemptyset(&myset);
  29.         sigaddset(&myset, SIGTERM);
  30.         pthread_sigmask(SIG_BLOCK, &myset, NULL);

  31.         iRet = pthread_create(&tid, NULL, child_func, NULL);
  32.         if(iRet != 0)
  33.         {
  34.                 printf("Create thread error(%d):%s\n", errno, strerror(errno));
  35.                 return -1;
  36.         }
  37.         printf("Thread %lu create the thread %lu\n", mytid, tid);
  38.         for(i = 0; i < 10; i++)
  39.         {
  40.                 sleep(1);
  41.                 raise(SIGTERM);
  42.                 printf("Thread %lu send SIGTERM to thread %lu\n", mytid, tid);
  43.         }
  44.         return 0;
  45. }
复制代码

结果如下:

  1. Thread 3086260432 create the thread 3086257040
  2. In thread 3086257040
  3. Thread 3086260432 send SIGTERM to thread 3086257040
  4. Thread 3086260432 send SIGTERM to thread 3086257040
  5. Thread 3086260432 send SIGTERM to thread 3086257040
  6. Thread 3086260432 send SIGTERM to thread 3086257040
  7. Thread 3086260432 send SIGTERM to thread 3086257040
  8. Thread 3086260432 send SIGTERM to thread 3086257040
  9. Thread 3086260432 send SIGTERM to thread 3086257040
复制代码

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2009-05-15 00:49 |只看该作者
pthread_kill(tid, SIGTERM);

论坛徽章:
0
3 [报告]
发表于 2009-05-15 09:37 |只看该作者
谢谢了!有两个疑问:
1. 那我使用pthread_kill的话,主线程用不用屏蔽这个信号呢?
2. 向一个多线程的程序发送信号,是主线程处理呢还是随机一个线程处理这个信号呢?
kinwin 该用户已被删除
4 [报告]
发表于 2009-05-15 09:52 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
5 [报告]
发表于 2009-05-15 10:38 |只看该作者
那一个线程ID只是在同一个进程中才有意义是吧?也就是说pthread_kill用于同一进程的多个线程之间发送信号,是不是?
如果想实现一个进程A想给进程B中的线程B-1发送一个信号,只要B中block这个信号,在B-1线程打开屏蔽就行了吧?

论坛徽章:
0
6 [报告]
发表于 2009-05-15 10:40 |只看该作者
你到底是想线程间通信呢还是进程间通信?

论坛徽章:
0
7 [报告]
发表于 2010-02-25 22:35 |只看该作者
那一个线程ID只是在同一个进程中才有意义是吧?也就是说pthread_kill用于同一进程的多个线程之间发送信号,是不是?
如果想实现一个进程A想给进程B中的线程B-1发送一个信号,只要B中block这个信号,在B-1线程打开屏蔽就行了吧?

学得挺快!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP