Chinaunix首页 | 论坛 | 博客
  • 博客访问: 49121
  • 博文数量: 21
  • 博客积分: 970
  • 博客等级: 准尉
  • 技术积分: 250
  • 用 户 组: 普通用户
  • 注册时间: 2010-01-03 18:43
文章分类
文章存档

2010年(21)

我的朋友

分类: C/C++

2010-01-11 14:41:22

#include <stdio.h>
#include <sys/wait.h>
#include <sys/types.h>

int main(void){
   pid_t pid;

    if ((pid = fork()) < 0){
        fprintf(stderr,"Fork error!\n");
        exit(-1);
    }
    else if (pid == 0)
{ /* first child */
        if ((pid = fork()) < 0){
            fprintf(stderr,"Fork error!\n");
            exit(-1);
        }
        else if (pid > 0){
            exit(0); /* parent from second fork == first child */
        }

        /*
         * We're the second child; our parent becomes init as soon
         * as our real parent calls exit() in the statement above.
         * Here's where we'd continue executing, knowing that when
         * we're done, init will reap our status.
         */

        sleep(2);
        printf("Second child, parent pid = %d\n", getppid());
        exit(0);
    }
    
    if (waitpid(pid, NULL, 0) != pid)
{ /* wait for first child */
        fprintf(stderr,"Waitpid error!\n");
        exit(-1);
    }

    /*
     * We're the parent (the original process); we continue executing,
     * knowing that we're not the parent of the second child.
     */

    exit(0);
}

阅读(451) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~