the fork creates a new process by making a copy of the parent's image in memory. The child inherits most of the parent's attributes including environment and privileges.
其中包括register set,当然也包括ip, the register containing the address of the currently executing instruction
这时父进程已经执行完了fork,ip指向的是fork后面的指令
子进程的ip和父进程一样的,所以当然也就不会在执行fork了,除非有循环