日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > linux >内容正文

linux

Linux进程通信之文件

發(fā)布時間:2023/11/30 linux 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Linux进程通信之文件 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

父子進程共享打開的文件描述符------使用文件完成進程間通信.

/*** 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); //保證子進程寫入數(shù)據(jù)int len = read(fd2, buf, sizeof(buf));write(STDOUT_FILENO, buf, len);wait(NULL);}return 0; }

運行結(jié)果:

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

child wrote over...

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

轉(zhuǎn)載于:https://www.cnblogs.com/wanghao-boke/p/11311730.html

總結(jié)

以上是生活随笔為你收集整理的Linux进程通信之文件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。