Refactoring in chapters
This commit is contained in:
18
process_chp3/ex19.c
Normal file
18
process_chp3/ex19.c
Normal file
@@ -0,0 +1,18 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main(void) {
|
||||
pid_t parent_pid = getpid();
|
||||
pid_t pid = fork();
|
||||
|
||||
if (pid > 0) {
|
||||
printf("PARENT PID = %d, CHILD PID = %d\n", parent_pid, pid);
|
||||
sleep(10);
|
||||
wait(NULL);
|
||||
}
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
Reference in New Issue
Block a user