码迷,mamicode.com
首页 > 其他好文 > 详细

关于进程fork()

时间:2014-05-04 10:08:16      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:style   blog   width   get   int   2014   

#include<stdio.h>

main()
{
  int fork_3;
  printf("Before:my pid is %d\n",getpid());

  fork_3 = fork();

  if(fork_3 ==-1)
  perror("fork");
  else if(fork_3 ==0)
  printf("I am the child,my pid =%d\n,fork is %d\n",getpid(),fork_3);  //此时getpid()获取的当前进程是子进程的pid,fork()返回的值是0
  else
  printf("I am the parent,my child is %d,crrent ID is %d\n",fork_3,getpid());  //此时getpid()获取的当前进程是父进程的pid,fork()返回的值是子进程的pid
}

编译运行如下:

bubuko.com,布布扣

关于进程fork(),布布扣,bubuko.com

关于进程fork()

标签:style   blog   width   get   int   2014   

原文地址:http://www.cnblogs.com/liuhp/p/3705804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!