1

给定以下代码:

分叉:

if(strcmp(str,"mkDir")==0)
            {
                str = strtok(NULL," ");
                switch(pid_child = fork())
                {
                        case -1: 
                        {
                            printf("Problem with producing a new process!\n");
                            exit(1);
                            break;
                        }
                        case 0: 
                        {
                            wait(1);
                            strcat(curRoot,str);
                            strcat(curRoot,"\\");
                            if(num_dir>0)
                            {
                                free(arr);
                                num_dir=0;
                            }
                            if(numFile>0)
                            {
                                free(files);
                                numFile=0;
                            }
                            break;
                        }
                        default:
                        {
                            pid = getpid();
                            *cur_pid = pid;
                            arr = add_dir(arr,str,pid_child,&num_dir);
                            break;
                        }
                }
            }//if MKDIR

试图杀死进程:

struct Directory* rmDir(struct Directory* dirs,char* name,int *size)
{
    int i,m=0,j;
    struct Directory* temp=NULL;
    j = find_dir(dirs,name,*size);
    if(j==-1)
    {
        printf("The directory does not exist\n");
        return dirs;
    }
    else
    {
        temp = (struct Directory*)malloc(sizeof(struct Directory)*((*size)-1));
        for (i=0; i<*size;i++)
        {
            if(i!=j)
            {
                temp[m]=dirs[i];
                m++;
            }
        }//for
        kill(dirs[j].dir_pid,SIGKILL);
        (*size)--;
        free(dirs);
        printf("Directory - %s was removed successfully!\n",name);
        return temp;
    }
}//rmDir

当我试图杀死“父亲”进程时,子进程继续运行?

这是为什么 ?

问候

4

2 回答 2

1

问题是你只杀死了一个进程。SIGKILL 仅发送到您指定的一个进程。您可以使用进程组一次将其发送给多个人,但要么全有,要么全无,这在这里无济于事。

所以,首先,不要使用 SIGKILL,使用 SIGTERM。

然后,在子进程中安装一个 SIGTERM 处理程序。处理程序应该依次向它自己的孩子发出信号,然后退出。

你需要阅读signalsigaction。有手册页和许多网络资源。

于 2012-12-20T16:27:52.140 回答
0

如果子进程的父进程被杀死,子进程会继续运行,直到正常退出或中止。由于子进程的父进程不存在,因此将子进程转换为子进程,zombie并保留其返回值和核心数据结构以供父进程收集。

在 Linux 上,该init进程重新成为僵尸进程的父进程,并且free是关联的内存。

于 2012-12-24T11:49:10.823 回答