Linux编程--进程--fork使用,创建父子进程

1.使用fork函数创建一个进程

#include 


pid_t fork(void);

        返回值为0,代表当前进程是子进程

        返回值为非负数,代表当前进程为父进程

        调用失败,返回-1

   代码:

#include 
#include 
#include 
#include 


int main()
{
        pid_t pid;
        pid = getpid();

        printf("pid=%d,getpid=%d\n",pid,getpid());
        int fd = fork();
        if(fd==0){

                printf("son process is pid=%d,getpid=%d\n",pid,getpid());

        }
        else if(fd>0)
        {
                printf("father process is pid=%d,getpid=%d\n",pid,getpid());
        }
        else if(fd<0)
        {
                puts("ERRO");
                exit(-1);

        }


        return 0;
}

运行结果:

fork原理:

Linux编程--进程--fork使用,创建父子进程_第1张图片

你可能感兴趣的:(嵌入式Linux学习,linux)