我有一台C服务器。该服务器必须处理多个连接和用户的输入(通过简单的ncurses GUI)。所以我创造了两个孩子
我的问题出现在用户界面的主菜单中,我需要exit
程序(然后终止第二个子进程 - 处理来自第一个子进程的连接 - )。
我试着用一个小例子来解释自己:
int main(){
pid_t pid;
int status1, status2;
if((pid = fork()) < 0){
perror("main fork failure:");
exit(1);
}
if(pid == 0){
pid = fork();
if(pid == 0){
/*
some stuff the second child does while
the first child is already running
*/
}
/* this is the first child */
int choice;
choice = menu();
switch(choice){
case 1:
break;
case 2:
/*
HERE I have to exit (from the first child first,
and from the program then): how can I kill the
second child that is running to prevent
zombie processes?
*/
// kill() which pid?
exit(2);
break;
}
wait(&status2);
}
wait(&status1);
return 0;
}
那么,如果我不知道第一个孩子的第二个孩子kill
,我怎么能pid
呢?
答案 0 :(得分:3)
在您的代码中,您重复使用变量pid
,但幸运的是,非零pid
是您需要发出的信号。
因此:
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
extern int menu(void);
static void wait_for_pid(int pid)
{
int status;
int corpse;
while ((corpse = wait(&status)) >= 0 && corpse != pid)
printf("Unexpected child %d exited with status 0x%.4X\n", corpse, status);
if (corpse == pid)
printf("Child %d exited with status 0x%.4X\n", corpse, status);
else
printf("Child %d died without its death being tracked\n", pid);
}
int main(void)
{
pid_t pid;
if ((pid = fork()) < 0)
{
perror("main fork failure:");
exit(1);
}
if (pid == 0)
{
if ((pid = fork()) < 0)
{
perror("child fork failure:");
exit(1);
}
if (pid == 0)
{
pause(); /* Do nothing until signalled */
exit(0);
}
/* this is the first child */
int choice = menu();
switch (choice)
{
case 1:
/* action 1 */
break;
case 2:
kill(pid, SIGTERM);
exit(2);
/*NOTREACHED*/
}
wait_for_pid(pid);
exit(0);
}
wait_for_pid(pid);
return 0;
}
wait_for_pid()
函数中的循环对于孩子来说应该是过度杀戮,但父进程可能有孩子在某些情况下不知道 - 不太可能但不是不可能的情况。
在第二个孩子中使用pause()
只是写一些代码;它没有用,因此不会是你在那里写的。写评论/* action 1 */
同样是虚拟代码;你用代码做一些有用的代替它。我可能有调用第一个孩子和第二个孩子的功能,而不是在main()
中嵌入很多代码。我假设它是如图所示编写的,用于创建MCVE(Minimal, Complete, Verifiable Example);谢谢你保持代码小。
上面的代码未经测试,因为没有menu()
函数。下面的代码有一个菜单功能 - 不是它非常互动。
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
extern int menu(void);
int menu(void)
{
printf("Dozing...\n");
sleep(1);
printf("Menu option 2 chosen\n");
return 2;
}
static void wait_for_pid(int pid)
{
int status;
int corpse;
int curpid = getpid();
printf("%d: waiting for children to die\n", curpid);
while ((corpse = wait(&status)) >= 0 && corpse != pid)
printf("%d: Unexpected child %d exited with status 0x%.4X\n", curpid, corpse, status);
if (corpse == pid)
printf("%d: Child %d exited with status 0x%.4X\n", curpid, corpse, status);
else
printf("%d: Child %d died without its death being tracked\n", curpid, pid);
}
int main(void)
{
pid_t pid;
if ((pid = fork()) < 0)
{
perror("main fork failure:");
exit(1);
}
if (pid == 0)
{
if ((pid = fork()) < 0)
{
perror("child fork failure:");
exit(1);
}
if (pid == 0)
{
printf("Second child (%d) - pausing\n", (int)getpid());
pause(); /* Do nothing until signalled */
printf("Second child (%d) - awake despite no signal handling\n", (int)getpid());
exit(0);
}
/* this is the first child */
printf("First child (%d) - menuing\n", (int)getpid());
int choice = menu();
switch (choice)
{
case 1:
/* action 1 */
break;
case 2:
printf("kill(%d, SIGTERM)\n", pid);
kill(pid, SIGTERM);
wait_for_pid(pid);
exit(2);
/*NOTREACHED*/
}
/* Reached on menu choices != 2 */
/* Probably needs a loop around the menu() - end loop before wait_for_pid() */
wait_for_pid(pid);
exit(0);
}
wait_for_pid(pid);
return 0;
}
运行时,示例输出序列为:
19489: waiting for children to die
First child (19490) - menuing
Dozing...
Second child (19491) - pausing
Menu option 2 chosen
kill(19491, SIGTERM)
19490: waiting for children to die
19490: Child 19491 exited with status 0x000F
19489: Child 19490 exited with status 0x0200
所有这些看起来都是预料之中的。您可以在状态0x000F中看到来自SIGTERM的死亡(SIGTERM通常为15,在macOS Sierra上为15,但AFAIK没有标准要求它为15)。您可以看到第一个孩子正常退出,状态为2,来自0x0200。您可以看到父母在孩子做任何事之前就开始等待了。您可以看到调试技术 - 大量打印并在大多数情况下包括PID。