- 论坛徽章:
- 0
|
本帖最后由 suqin0802 于 2012-04-01 17:14 编辑
我也被这个问题困扰了~~
我将网上下载的源代码拷贝了一份建立文件10-15.c,编译执行后的结果是没有SIGINT的
![]()
这个是可以想得通的!
但是以前在网上下载了源代码包整体编译后得出的可执行文件/apue.2e/signals/suspend1,运行这个得出结果是跟书上的一致,实在是费解啊,求解释!!!我真的只是复制粘贴了一下代码而已,为什么结果会不同呢?
代码如下:- #include "apue.h"
- static void sig_int(int);
- int
- main(void)
- {
- sigset_t newmask, oldmask, waitmask;
- pr_mask("program start: ");
- if (signal(SIGINT, sig_int) == SIG_ERR)
- err_sys("signal(SIGINT) error");
- sigemptyset(&waitmask);
- sigaddset(&waitmask, SIGUSR1);
- sigemptyset(&newmask);
- sigaddset(&newmask, SIGINT);
- /*
- * Block SIGINT and save current signal mask.
- */
- if (sigprocmask(SIG_BLOCK, &newmask, &oldmask) < 0)
- err_sys("SIG_BLOCK error");
- /*
- * Critical region of code.
- */
- pr_mask("in critical region: ");
-
- /*
- * Pause, allowing all signals except SIGUSR1.
- */
- if (sigsuspend(&waitmask) != -1)
- err_sys("sigsuspend error");
- pr_mask("after return from sigsuspend: ");
- /*
- * Reset signal mask which unblocks SIGINT.
- */
- if (sigprocmask(SIG_SETMASK, &oldmask, NULL) < 0)
- err_sys("SIG_SETMASK error");
- /*
- * And continue processing ...
- */
- pr_mask("program exit: ");
- exit(0);
- }
- void pr_mask(const char *str)
- {
- sigset_t sigset;
- int errno_save;
- errno_save = errno;
- if(sigprocmask(0,NULL,&sigset) <0) err_sys("sigprocmask error");
- printf("%s",str);
- if(sigismember(&sigset,SIGINT)) printf("SIGINT ");
- if(sigismember(&sigset,SIGQUIT)) printf("SIGQUIT ");
- if(sigismember(&sigset,SIGUSR1)) printf("SIGUSR1 ");
- if(sigismember(&sigset,SIGALRM)) printf("SIGALRM ");
-
- printf("\n");
- errno = errno_save;
- }
- static void
- sig_int(int signo)
- {
- pr_mask("\nin sig_int: ");
- }
复制代码 |
|