在C中收到SIGINT时,在进程树中使用fork()创建X子级

时间:2013-09-30 02:06:42

标签: c process tree fork

我一直在努力解决这个问题而且我放弃了所以我正在寻求帮助。

我需要编写一个永久等待SIGINT(Ctrl + C)的程序,当收到时,上一代进程会创建X个子进程。你会说它是一个“Xary”树(如果我错了,请纠正我)。

所以:

一旦收到SIGINT:

$ pstree -p 6227
example(6227) example(6229)
              example(6230)

收到两次后:

$ pstree -p 6227
             example(6229) example(6235)
                           example(6236)
tarea2(6227)
             example(6230) example(6234)
                           example(6237)

等等......

到目前为止,我能够捕获SIGINT,但经过多次尝试失败后,我对如何创建树没有任何了解。

所以,这是我的代码: (请忽略未使用的包含)

#include <stdio.h> /* libreria estandar */
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h> 
#include <sys/types.h>
#include <sys/wait.h>

#define X 2

void reproducir(int signum)
{
 if (signum == SIGINT)
        switch(signum)
    {
        case SIGINT:
            /*SOMETHING I'VE BEEN TRYING TO FIGURE OUT*/
    }
        }
int main(void)
{
                printf("PID: %d\n", getpid()); 

    while (1)
    { 
        if (signal(SIGINT, reproducir) == SIG_ERR) 
        {
            perror("error\n");
            exit(EXIT_FAILURE);
        }
    } 
}

非常感谢,我很抱歉这里有任何重大错误,这里有本地西班牙语。

1 个答案:

答案 0 :(得分:0)

这就是我想要的:

int reproducir(void)
{
if (spawn == 0){
for (i=0;i < X;i++)
        {
                    spawn = fork();
                    if(spawn == 0) {
                      break;
                    }
        }
    }
    return 0;
}