如何在C / C ++上用Unix中的信号同步3个不同的进程? 我需要:第一个流程开始第二个流程。第二个过程开始第三个过程在第三个进程启动后,我希望按顺序1 - 2 - 3杀死所有进程。
我不知道为此使用等待,信号,暂停等功能。你可以帮帮我吗?感谢。
#include <iostream>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
using namespace std;
int main (int argc, char * const argv[]) {
pid_t three_pid;
pid_t second_pid;
pid_t first_pid;
cout << "child 1 is started" << endl;
pid_t pid;
if ((pid = fork()) == -1)
{
cout << "fork errror" << endl;
exit(EXIT_FAILURE);
}
else if (pid == 0)
{
second_pid = getpid();
cout << "child 2 is started" << endl;
pid_t pid2;
if ((pid2 = fork()) == -1)
{
cout << "fork 2 error" << endl;
exit(EXIT_FAILURE);
}
else if (pid2 == 0)
{
three_pid = getpid();
cout << "child 3 is started" << endl;
cout << "child 3 is TERMINATED" << endl;
}
else
{
cout << "child 2 is TERMINATED" << endl;
}
}
else
{
first_pid = getpid();
cout << "child 1 is TERMINATED" << endl;
}
}
答案 0 :(得分:3)
要以便携方式执行此操作,请让进程3(孙子)调用kill(<pid1>, SIGKILL)
并使用kill(<pid1>, 0)
来测试进程是否仍在运行。如果kill()
消失,errno
设置为ESRCH
则失败。
然后让进程3对<pid2>
执行相同的操作。
然后让进程3终止。
答案 1 :(得分:2)
您需要在父进程中使用waitpid
才能等到子procsee终止。阅读http://linux.die.net/man/2/waitpid了解更多详情。像这样:
int status;
if (waitpid(cpid, &status, 0) < 0) { // where cpid is child process id
perror("waitpid");
exit(EXIT_FAILURE);
}
您还需要使用_exit(exitCode)
正确终止子进程。请阅读http://linux.die.net/man/2/exit了解详情。
编辑:如果要按顺序1-2-3终止进程,只需等待子进程中的父进程ID。