vfork(): Fix a race condition in the SMP case. Existing logic depended on the...
vfork(): Fix a race condition in the SMP case. Existing logic depended on the fact that the child would not run until waitpid was called because the child had the same priority as the parent. BUT in the SMP case that is not true... the child may run immediately on a different CPU.
parent
0db99b8c
Please register or sign in to comment