免费注册 查看新帖 |

Chinaunix

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

关于sigsuspend的返回问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-04-08 22:10 |只看该作者 |倒序浏览
int main(void) {
   sigset_t   newmask, oldmask, zeromask;
   if (signal(SIGINT, sig_int) == SIG_ERR)
      err_sys("signal(SIGINT) error");
   sigemptyset(&zeromask);
   sigemptyset(&newmask);
   sigaddset(&newmask, SIGINT);
   /* block SIGINT and save current signal mask */
   if (sigprocmask(SIG_BLOCK, &newmask, &oldmask) int sigsuspend(const sigset_t *sigmask);
           Returns: 1 with errno set to EINTR
    both reset the signal mask and put the process to sleep in a single atomic operation.
   The signal mask of the process is set to the value pointed to by sigmask.
Then the process is suspended until a signal is caught or until a
signal occurs that terminates the process. If a signal is caught and if
the signal handler returns, then sigsuspend returns, and the signal mask of the process is set to its value before the call to sigsuspend.
开始的signalmask:(sigprocmask(SIG_BLOCK, &newmask, &oldmask)
调用sigsuspend:zeromask.
调用返回后:oldmask
进程挂起直到:
1:捕捉到一个信号并且从该信号的处理程序返回之后,sigsuspend才返回。将该进程的sigmask设置为调    用该函数之前的sigmask.
2: 一个信号的发生引起了该进程的终止
现在的关键问题是:sigsuspend将sigmask设置为了zeromask,但是结果:in sig_int: SIGINT
-----If a signal is caught and if
the signal handler returns, then sigsuspend returns, and the signal mask of the process is set to its value before the call to sigsuspend.
这里的and之后的语句应该是说在sigsuspend返回之前就已经产生了的结果,更确切地说应该是在signal handler执行之前就已经恢复了sigmask------不然不会产生这样的结果。
有空的时候好好分析下,把脉络理清楚


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/35079/showart_273392.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP