- 论坛徽章:
- 0
|
本帖最后由 newbuding 于 2010-04-16 13:59 编辑
大家帮忙看看,这样使用有问题吗?
在我的电脑上用kill -CONT `pidof sigpipe`只输出了
没有唤醒select,这是为什么啊?- #include <signal.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- static int main_pipe[2];
- void cont(int sig)
- {
- printf("Enter cont\n");
- write(main_pipe[1], "0", 1);
- printf("Leave cont\n");
- }
- int main(int argc, char *argv[])
- {
- pid_t pid;
- int stat;
- char ch[1];
- int rc;
- fd_set fds;
- //signal(SIGINT, ouch);
- signal(SIGCONT, cont);
- if (pipe(main_pipe) < 0) {
- perror("pipe()");
- exit(1);
- }
- printf("pipe(%d:%d)\n", main_pipe[0], main_pipe[1]);
- while(1) {
- FD_ZERO(&fds);
- FD_SET(main_pipe[0], &fds);
- rc = select(main_pipe[0]+1, &fds, NULL, NULL, NULL);
- if (rc < 0) {
- continue;
- }
- if (FD_ISSET(main_pipe[0], &fds)) {
- char x;
- while (read(main_pipe[0], &x, 1) > 0) {}
- }
- printf(".");
- }
- exit(0);
- }
复制代码 |
|