http://blog.chinaunix.net/uid-21084809-id-2215376.html Processes, kernel threads, user threads, and fibers Process 1.9.2 进程的创建 pid_t fork(void) 功能:创建子进程. fork 被调用一次,却返回两次.**先返回parent process, 后返回child process** 它可能有三种不同的返回值: - 在父进程中,fork返回新创建的子进程的PID…