0

我已经为此苦苦挣扎了一段时间,但我放弃了,所以我正在寻求帮助。

我需要编写一个永久等待 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);
        }
    } 
}

提前非常感谢,对于任何语法错误,我很抱歉,母语为西班牙语的人在这里。

4

1 回答 1

0

这就是我一直在寻找的:

int reproducir(void)
{
if (spawn == 0){
for (i=0;i < X;i++)
        {
                    spawn = fork();
                    if(spawn == 0) {
                      break;
                    }
        }
    }
    return 0;
}
于 2013-10-01T02:49:56.860 回答