如何使用Python,在Windows下保证父进程退出时,子进程同样退出
1个回答
展开全部
父进程退出前,使用 kill 向子进程发送 SIGKILL 信号。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
int main(void)
{
pid_t pid;
pid = fork();
if (pid < 0) {
printf("fork error!\n");
exit(-1);
}
if (pid > 0) {
printf("Parent. ppid(%d), pid(%d)\n", getppid(), getpid());
kill(pid, SIGKILL);
wait(NULL);
printf("Done\n");
} else {
printf("Child. ppid(%d), pid(%d)\n", getppid(), getpid());
sleep(3);
}
return 0;
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
int main(void)
{
pid_t pid;
pid = fork();
if (pid < 0) {
printf("fork error!\n");
exit(-1);
}
if (pid > 0) {
printf("Parent. ppid(%d), pid(%d)\n", getppid(), getpid());
kill(pid, SIGKILL);
wait(NULL);
printf("Done\n");
} else {
printf("Child. ppid(%d), pid(%d)\n", getppid(), getpid());
sleep(3);
}
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询