有名管道程式碼
有名管道寫端程式碼
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<strings.h>
#include<signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#define fifo_name1 "./fifo1"
// int mkfifo(const char *pathname, mode_t mode);
void print_err(char *estr)
{
perror(estr);
exit;
}
void signal_fun(int signo)
{
remove(fifo_name1);
exit(-1);
}
int main(){
char buf[128]={0};
int fd= -1;
int ret=-1;
ret = mkfifo(fifo_name1 ,0664);
//huliecuwu
if (ret==-1&&errno!=EEXIST)print_err("mkfifo fail");
fd=open(fifo_name1 ,O_WRONLY);
if (fd==-1)print_err("open fail");
signal(SIGINT,signal_fun);
while(1){
bzero(buf,sizeof(buf));
scanf("%s",buf);
write(fd,buf,sizeof(buf));
}
return 0;
}
讀端程式碼
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<strings.h>
#include<signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#define fifo_name1 "./fifo1"
// int mkfifo(const char *pathname, mode_t mode);
void print_err(char *estr)
{
perror(estr);
exit;
}
void signal_fun(int signo)
{
remove(fifo_name1);
exit(-1);
}
int main(){
char buf[128]={0};
int fd= -1;
int ret=-1;
ret = mkfifo(fifo_name1 ,0664);
//huliecuwu
if (ret==-1&&errno!=EEXIST)print_err("mkfifo fail");
fd=open(fifo_name1 ,O_RDONLY);
if (fd==-1)print_err("open fail");
signal(SIGINT,signal_fun);
while(1){
bzero(buf,sizeof(buf));
read(fd,buf,sizeof(buf));
printf("data:%s\n",buf);
}
return 0;
}
相關文章
- Linux程式間通訊②:有名管道FIFOLinux
- Linux系統程式設計—有名管道Linux程式設計
- 3|程式間通訊--有名管道學習筆記筆記
- Laravel 路由管道原始碼分析Laravel路由原始碼
- C# 管道式程式設計C#程式設計
- linux 程式間通訊之管道Linux
- Linux 的程式間通訊:管道Linux
- 系統程式設計——管道通訊程式設計
- linux程式間通訊--管道(PIPE & FIFO)Linux
- Go的程式設計模式一-管道PipelineGo程式設計設計模式
- Linux系統程式設計之匿名管道Linux程式設計
- 溫故之.NET程式間通訊——管道
- 管道 |
- 程式間通訊——POSIX 有名訊號量與無名訊號量
- 【linux】系統程式設計-1-程式、管道和訊號Linux程式設計
- 程式設計優化之管道資料流程式設計優化
- 自己動手實現 Shell 多程式管道符
- 利用windows api實現程式通訊(命名管道)WindowsAPI
- 20.2、python程式間通訊——佇列和管道Python佇列
- [Linux]管道Linux
- Filter管道Filter
- redis管道Redis
- angular 管道Angular
- 【linux】管道!!!Linux
- Linux 管道Linux
- Linux系統程式設計之程式間通訊方式:管道(二)Linux程式設計
- Linux系統程式設計之程式間通訊方式:管道(一)Linux程式設計
- 演算法鏈與管道(上):建立管道演算法
- 介紹 Linux 中的管道和命名管道Linux
- Swoole 原始碼分析——基礎模組之 Pipe 管道原始碼
- Channel(管道)- 《Go 專家程式設計》筆記提要Go程式設計筆記
- 速度不夠,管道來湊——Redis管道技術Redis
- Linux系統程式設計之程式間通訊方式:命名管道(二)Linux程式設計
- Linux系統程式設計之程式間通訊方式:命名管道(一)Linux程式設計
- 管道系統
- Linux管道符Linux
- Linux 之管道Linux
- mongodb 聚合管道MongoDB