管道的例子
编程技术  /  houtizong 发布于 3年前   88
#include <stdio.h>#include <unistd.h>#include <stdlib.h>#include <string.h>int pipe_test[2]; int main(){ pid_t pid; char buffer[32]; memset(buffer, 0, 32); if(pipe(pipe_test) < 0) { printf("Failed to create pipe!\n"); return 0; } if(0 == (pid = fork())) { close(pipe_test[1]); sleep(3); if(read(pipe_test[0], buffer, 32) > 0) { printf("Receive data from server, %s!\n", buffer); } close(pipe_test[0]); } else { close(pipe_test[0]); if(-1 != write(pipe_test[1], "hello", strlen("hello"))) { printf("Send data to client, hello!\n"); } close(pipe_test[1]); waitpid(pid, NULL, 0); } return 1;}
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接