免费注册 查看新帖 |

Chinaunix

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

APUE中给出的abort函数实现的疑惑 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-10-17 10:34 |只看该作者 |倒序浏览
各位大虾:
    看这段代码时,百思不得其解。具体请看下面代码:

#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

void
abort(void)         /* POSIX-style abort() function */
{
    sigset_t           mask;
    struct sigaction   action;

    /*
     * Caller can't ignore SIGABRT, if so reset to default.
     */
    sigaction(SIGABRT, NULL, &action);
    if (action.sa_handler == SIG_IGN) {
        action.sa_handler = SIG_DFL;
        sigaction(SIGABRT, &action, NULL);
    }
    if (action.sa_handler == SIG_DFL)
        fflush(NULL);           /* flush all open stdio streams */

    /*
     * Caller can't block SIGABRT; make sure it's unblocked.
     */
    sigfillset(&mask);
    sigdelset(&mask, SIGABRT);  /* mask has only SIGABRT turned off */
    sigprocmask(SIG_SETMASK, &mask, NULL);
    kill(getpid(), SIGABRT);    /* send the signal */

    /*
     * If we're here, process caught SIGABRT and returned.
     */
    fflush(NULL);               /* flush all open stdio streams */
    /*为什么这里要重新设置信号处理函数并再次发送SIGABRT信号呢?为什么不直接exit*/
    action.sa_handler = SIG_DFL;
    sigaction(SIGABRT, &action, NULL);  /* reset to default */
    sigprocmask(SIG_SETMASK, &mask, NULL);  /* just in case ... */
    kill(getpid(), SIGABRT);                /* and one more time */
    exit(1);    /* this should never be executed ... */
}

论坛徽章:
0
2 [报告]
发表于 2006-10-19 10:01 |只看该作者
没有人回答啊。顶一下

论坛徽章:
0
3 [报告]
发表于 2006-10-20 00:25 |只看该作者
因为 POSIX 要求 abort 函数通过发送 SIGABRT 使进程退出。之前的代码判断 SIGABRT 对应的响应如果是 SIG_IGN,则恢复成 SIG_DFL;同时取消可能的 sigprocmask 掩码;但是如果 SIGABRT 被制定了其它的自定义响应函数,则会正常执行一次并且成功返回。如果出现这种情况,进程就会运行到
  1.    /*
  2.      * If we're here, process caught SIGABRT and returned.
  3.      */
复制代码

的位置。这时强制恢复默认行为并从新触发一次,迫使进程出错退出。

:)

论坛徽章:
0
4 [报告]
发表于 2006-10-20 13:15 |只看该作者
多谢楼上的。
你的意思是说/* If we're here, process caught SIGABRT and returned.*/前面的是为了在调用者定义了自己的响应函数的情况下让调用者的响应函数执行。后面的则是让SIG_DFL处理ABORT信号,而SIG_DFL的处理结果是退出进程,所以最后的exit(1)后面注释说 “this should never be executed ... ”。不知道我这样理解对不对?:)
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP