Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个程序,我必须在其中分叉 4 个程序,然后再执行 exec 。我的问题是如何等待执行 exec 的孩子。当孩子执行 exec 时,Wait() 不起作用
我的问题是如何等待执行 exec 的孩子。当孩子执行 exec 时,Wait() 不起作用
假设您正在谈论该wait(3)功能,无论孩子是否执行系统调用,它对任何孩子都非常有效。execve(2)
wait(3)
execve(2)
由于您显然想等待 4 个孩子,因此您可能也对waitpid(3).
waitpid(3)