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.
pcntl_waitpid()的手册页记录了以下选项:
等待任何进程组 ID 等于 pid 绝对值的子进程。
我对此功能感兴趣(等待一些子进程,但不是全部),但找不到有关如何设置子进程的进程组 ID 的任何参考。
这对PCNTL有可能吗?
找到了。PCNTL 不提供此功能,但POSIX扩展确实提供posix_setpgid():
bool posix_setpgid ( int $pid , int $pgid )