码迷,mamicode.com
首页 > 编程语言 > 详细

C语言 fork

时间:2014-08-12 16:26:04      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   io   for   2014   ar   

/*
*@author cody
*@date 2014-08-12
*@description 
*/

/*
#include <sys/types.h>
#include <unistd.h>

pid_t fork(void);
*/

#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

void Fork(){
    pid_t pid;
    char *message;
    int n;
    pid = fork();
    if(pid < 0){
        perror("fork failed!");
        exit(1);
    }
    if(pid == 0){
        message = "this is the child\n";
        n = 6;
    }else{
        message = "this is the parent\n";
        n = 3;
    }
    for(;n > 0;n --){
        printf("%s",message);
        sleep(1);
    }
}

int main(int argc, char const *argv[])
{
    Fork();

    return 0;
}

 

C语言 fork,布布扣,bubuko.com

C语言 fork

标签:des   style   blog   color   io   for   2014   ar   

原文地址:http://www.cnblogs.com/cody1988/p/3907264.html

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