30 lines
461 B
C
30 lines
461 B
C
|
#include <sys/types.h>
|
||
|
#include <sys/wait.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int
|
||
|
main(void)
|
||
|
{
|
||
|
int status = 0;
|
||
|
|
||
|
pid_t pid = fork();
|
||
|
if (pid < 0) {
|
||
|
perror("fork");
|
||
|
exit(EXIT_FAILURE);
|
||
|
}
|
||
|
else if (pid > 0) {
|
||
|
waitpid(pid, &status, 0);
|
||
|
if (!WIFEXITED(status)) {
|
||
|
fprintf(stderr, "child exited due to an error\n");
|
||
|
}
|
||
|
printf("goodbye: %d\n", status);
|
||
|
}
|
||
|
else {
|
||
|
printf("hello: %d\n", status);
|
||
|
}
|
||
|
|
||
|
exit(EXIT_SUCCESS);
|
||
|
}
|