日期:2014-05-16 浏览次数:20735 次
#include <unistd.h> #include <stdio.h> void main(){ pid_t pid1, pid2, pid3; pid1=fork(); pid2=fork(); pid3=fork(); printf("the pid is%d pid1=%d pid2=%d pid3=%d\n",getpid(),pid1, pid2, pid3); }