-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy path9.10.c
33 lines (29 loc) · 799 Bytes
/
9.10.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include "apue.h"
#include <errno.h>
static void sig_hup(int signo) {
printf("SIGHUP received, pid = %ld\n", (long) getpid());
}
static void pr_ids(char *name) {
printf("%s: pid = %ld, ppid = %ld, pgrp = %ld, tpgrp = %ld\n",
name, (long) getpid(), (long) getppid(), (long) getpgrp(), (long) tcgetpgrp(STDIN_FILENO));
fflush(stdout);
}
int main() {
char c;
pid_t pid;
pr_ids("parent");
if ((pid = fork()) < 0) {
err_sys("fork error");
} else if (pid > 0) {
sleep(5);
} else {
pr_ids("child");
signal(SIGHUP, sig_hup);
kill(getpid(), SIGTSTP);
pr_ids("child");
if (read(STDIN_FILENO, &c, 1) != 1) {
printf("read error %d on controlling TTY\n", errno);
}
}
exit(0);
}