0

所以我需要迭代 fork() 几次,创建子进程。例如,子进程应该“做很少或不做处理”;

while(1)
 sleep(1)

然后父母应该收集孩子的PID并杀死他们(苛刻,我知道!)。

然而,我现在这样做的方式是多次执行“父”块中的代码,但我只需要它执行一次。

4

1 回答 1

1

这是一个例子;您需要将 pid 存储在表中(此处为 p[])。

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>

#define NSUB 10

int main ()
{
    int i, n = NSUB, p[NSUB], q;

    for (i = 0; i < n; i++) {
        printf ("Creating subprocess %d ...\n", i);
        p[i] = fork();
        if (p[i] < 0) { perror ("fork"); exit (1); }

        if (p[i] == 0) {  /* subprocess */
            printf ("Subprocess %d : PID %d\n", i, (int) getpid());
            while (1) pause ();
            exit (0);
        }
    }

    sleep(2);
    for (i = 0; i < n; i++) {
        printf ("Killing subprocess %d ...\n", i);
        if (kill (p[i], SIGTERM) < 0) perror ("kill");
    }

    for (i = 0; i < n; i++) {
        printf ("waiting for a subprocess ...\n");
        q = wait (NULL);
        printf ("Subprocess terminated: PID %d\n", q);
    }

    exit (0);
}
于 2013-02-28T17:00:54.600 回答