首页 > 系统服务 > 详细

Linux进程通信之文件

时间:2019-08-06 21:45:48      阅读:113      评论:0      收藏:0      [点我收藏+]

父子进程共享打开的文件描述符------使用文件完成进程间通信.

/*** 
 fork_share_fd.c
 ***/
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/wait.h>


int main(void)
{
    int fd1, fd2; pid_t pid;
    char buf[1024];
    char *str = "---------test for shared fd in parent child process-----\n";


    pid = fork();
    if (pid < 0) {
        perror("fork error");
        exit(1);
    } else if (pid == 0) {
        fd1 = open("test.txt", O_RDWR);
        if (fd1 < 0) {
            perror("open error");
            exit(1);
        }
        write(fd1, str, strlen(str));
        printf("child wrote over...\n");

    } else {
        fd2 = open("test.txt", O_RDWR);
        if (fd2 < 0) {
            perror("open error");
            exit(1);
        }
        sleep(1);                   //保证子进程写入数据

        int len = read(fd2, buf, sizeof(buf));
        write(STDOUT_FILENO, buf, len);

        wait(NULL);
    }

    return 0;
}

运行结果:

ubuntu1604@ubuntu:~/wangqinghe/linux/20190806$ ./fork_share_fd

child wrote over...

---------test for shared fd in parent child process-----

Linux进程通信之文件

原文:https://www.cnblogs.com/wanghao-boke/p/11311730.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!