linux 多线程之间使用管道进行通讯
2022/8/13 5:23:40
本文主要是介绍linux 多线程之间使用管道进行通讯,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
参考 (129条消息) linux c 使用fifo管道进行多线程间通信_土豆西瓜大芝麻的博客-CSDN博客_多线程fifo
稍作修改
#include <stdio.h> #include <stdlib.h> #include <pthread.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <string.h> #include <fcntl.h> #include <errno.h> //编译 gcc -o t03_testfifo t03_testfifo.c -lpthread void *thread_fun_write(void *p) { char *buf = "12345\n"; //加上\0一共7个字符 int fd; fd = open("./myfifo",O_WRONLY); if(fd == -1) { printf("write fifo open fail....\n"); exit(-1); return NULL; } while(1) { write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); write( fd, buf, strlen(buf)+1 ); printf("write ok\n"); sleep(2); } close(fd); return NULL; } void *thread_fun_read(void *p) { int fd; fd = open("./myfifo", O_RDONLY ); if(fd == -1) { printf("read fifo open fail...\n"); exit(-1); return NULL; } char buf[1024] = {0}; int num;//保存读取数据的大小 while(1) { memset(buf,0,1024); num = read( fd, buf, 1024 ); printf("read ok num:%d\n",num); for(int i=0;i<num;i++){ printf("%c",buf[i]); } puts(buf); } close(fd); return NULL; } int main() { printf("test fifo v1.0.3 \n"); //创建有名管道,如果管道存在则直接使用 int n = mkfifo("./myfifo",0664); if( n < 0 && errno!=EEXIST) { perror("mkfifo"); return -1; } //创建线程 pthread_t writeId,readId; pthread_create( &writeId, NULL, thread_fun_write, NULL ); pthread_create( &readId, NULL, thread_fun_read, NULL); pthread_join(writeId,NULL); pthread_join(readId,NULL); while(1); return 0; }
//
这篇关于linux 多线程之间使用管道进行通讯的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南