C语言 如何避免过早杀死儿童进程


#include <stdio.h>
#include <sys/mman.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#define MAX_PIDS 28
volatile pid_t *pids;
void kPid(int x)
{
    int c;
    for (c=0; c<10; c++) {
    if (pids[c] == x)
    {   
        int status = 0;
        pids[c] = wait(&status);
    }
    else {
        continue;
    }
  }
}

int main(int argc, char **argv)
{
  int c;
  pid_t pid;
  pids = mmap(0, MAX_PIDS*sizeof(pid_t), PROT_READ|PROT_WRITE,
              MAP_SHARED | MAP_ANONYMOUS, -1, 0);
  memset((void *)pids, 0, MAX_PIDS*sizeof(pid_t));
  for (c=0; c<10; c++) {
    pid = fork();
    if (pid == 0) {
      exit(1);
    } else if (pid < 0) {
      perror("fork failed");
    } else {
      pids[c] = pid;
    }
  }
  int t;
  char test[50];
  snprintf(test,sizeof(test),"ps -ef | grep defunct",pids[c]);
  system(test);
  printf("Kill child: ");
  scanf("%d",&t);
  kPid(t);
  system(test);
  exit(0);
}

现在当我使用命令时:snprintf(test,sizeof(test(,"ps -ef | grep defunct",pids[c](;

它表明进程已失效,如何避免这种情况? 我知道"exit(1(;"会杀死进程,但我能放什么来代替这个呢?我希望以后能够杀死该过程

避免失效进程的最简单方法是忽略 SIGCHLD:

signal(SIGCHLD, SIG_IGN);

否则,使用 waitpid(( 等待子项终止。这主要取决于您是否想知道孩子何时终止以及其退出代码是什么。如果您不需要该信息,请使用信号法

相关内容

  • 没有找到相关文章

最新更新