免费注册 查看新帖 |

Chinaunix

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

关于线程信号问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-07-31 16:14 |只看该作者 |倒序浏览
#include <pthread.h>
#include <signal.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

static pthread_t  tid1, tid2;

static void *
thread_func( void * arg )
{
        sigset_t  tmask;
        sigset_t  twait;
        int          signum;

        sigemptyset(&tmask);
        sigemptyset(&twait);

        sigaddset(&tmask,SIGTERM);
        sigaddset(&twait,SIGTERM);

        pthread_sigmask(SIG_BLOCK,&tmask,NULL);
       
        printf("thread 2 already\n");
       
        while(1){
                sigwait(&twait,&signum);
                printf("hi,in %d\n",signum);       
        }
        return NULL;
}

static
void sig_term( int signum )
{
        if(pthread_equal( tid1, pthread_self()))
                printf("this thread one's sigterm process\n");
        else if(pthread_equal( tid2, pthread_self()))
                printf("this thread two's sigterm process\n");
        else{
                printf("wrong exit\n");
                exit(1);
        }
}

int
main()
{

        sigset_t   pmask;
        sigset_t   tmask;
       

        tid1 = pthread_self();

        if( signal( SIGTERM, sig_term ) == SIG_ERR ){
                perror("SIGTERM register error");
                exit(0);
        }
        sigfillset(&pmask);
        sigemptyset(&tmask);
        sigdelset(&pmask,SIGTERM);
        sigaddset(&tmask,SIGTERM);

        sigprocmask(SIG_SETMASK,&pmask,NULL);

//        pthread_sigmask(SIG_BLOCK,&tmask,NULL);       

        if( pthread_create( &tid2, NULL, thread_func, NULL ) < 0 ){
                perror("pthread create error");
                exit(0);
        }
        printf("thread1 already\n");
        while(1);
        return 0;
}
       
想测试以下,发给两个线程所在的进程的sigterm信号会不会同时发给两个线程
这个是我kill PID的几次结果,都没有执行printf("hi,in %d\n",signum);
iant@giant-laptop:~/c/apue/test/thread_signal$ ./thread_signal
thread 2 already
thread1 already
this thread one's sigterm process
this thread one's sigterm process
this thread one's sigterm process
this thread one's sigterm process
this thread one's sigterm process
this thread one's sigterm process

论坛徽章:
0
2 [报告]
发表于 2010-07-31 16:28 |只看该作者
希望高手可以讨论一下

论坛徽章:
0
3 [报告]
发表于 2010-07-31 17:46 |只看该作者
另:应该是只有一个线程收到该信号

论坛徽章:
0
4 [报告]
发表于 2010-07-31 18:04 |只看该作者
为什么受到信号的只是其中一个特定的线程

论坛徽章:
0
5 [报告]
发表于 2010-07-31 18:26 |只看该作者
NPTL信程模型的话,应该是发送到进程的信号会被所有线程接收到吧

论坛徽章:
0
6 [报告]
发表于 2010-07-31 18:51 |只看该作者
希望懂这方面的人出来讲解一下。

论坛徽章:
0
7 [报告]
发表于 2010-07-31 20:11 |只看该作者
找到了APUE2对于这种情况的解释,原文如下:

"如果信号被捕获(例如进程通过使用sigaction建立了一个信号处理程序),而且线程正在sigwait调用中等待同一信号,那么这时将由操作系统实现来决定以何种方式递送信号.在这种情况下,操作系统实现可以让sigwait返回,也可以激活信号处理,但不可能出现两者皆可的情况."

楼主的程序显然属于这种情况.看来系统的实现是每次调用信号处理程序而不是让sigwait返回.

论坛徽章:
0
8 [报告]
发表于 2010-07-31 20:54 |只看该作者
回复 7# liwangli1983

那么这样会不会出现让一个线程永远等待的情况那

论坛徽章:
0
9 [报告]
发表于 2010-07-31 20:58 |只看该作者
回复 7# liwangli1983
我看到了书,谢谢你的提示。是我对问题的理解有偏差。这个问题算是解决了。

论坛徽章:
0
10 [报告]
发表于 2010-07-31 21:04 |只看该作者
回复  liwangli1983

那么这样会不会出现让一个线程永远等待的情况那
lyyunfei 发表于 2010-07-31 20:54



应该会一直等到进程结束吧......
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP