首页 > 代码库 > APUE1.9信号
APUE1.9信号
#include "apue.h"#include <sys/wait.h>static void sig_int(int); /* our signal-catching function */int main(void){ char buf[MAXLINE]; /* from apue.h */ pid_t pid; int status; if (signal(SIGINT, sig_int) == SIG_ERR) { err_sys("signal error"); } printf("%% "); /* print prompt (printf requires %% to print %) */ while (fgets(buf, MAXLINE, stdin) != NULL) { if (buf[strlen(buf) - 1] == ‘\n‘) { buf[strlen(buf) - 1] = 0; /* replace newline with null */ } if ((pid = fork()) < 0) { err_sys("fork error"); } else if (pid == 0) { /* child */ execlp(buf, buf, (char *)0); err_ret("couldn‘t execute: %s", buf); exit(127); } /* parent */ if ((pid = waitpid(pid, &status, 0)) < 0) { err_sys("waitpid error"); } printf("%% "); } return 0;}void sig_int(int signo){ printf("interrupt\n%% ");}
all: shell1 shell2shell1: shell1.c g++ -g -Wall shell1.c ../lib/libapue.a -I ../include -o shell1shell2: shell2.c g++ -g -Wall shell2.c ../lib/libapue.a -I ../include -o shell2clean: rm shell1 shell2
APUE1.9信号
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。