7-3 プロセスを生成するサンプルプログラム
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
int
main()
{
pid_t pid;
pid = fork();
if (pid == 0) {
printf("child process : %d\n", getpid());
exit(0);
} else {
int status;
pid_t waitpid;
printf("parent process : childpid=%d, mypid=%d\n", pid, getpid());
waitpid = wait(&status);
printf("waitpid : %d\n", waitpid);
}
return 0;
}