(FIFO)有名なパイプの親縁プロセス間の通信

3586 ワード

原文住所:
2つのプログラム、1つの書き込みと1つの読み取り、有名なパイプの親縁関係のないプロセス間の通信をテストします:パイププログラムを読む:main.c
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/types.h>

#define FIFO_NAME "myfifo"
#define BUF_SIZE 1024

int main(void) {
int fd;
char buf[BUF_SIZE];

umask(0);
fd = open(FIFO_NAME, O_RDONLY);
read(fd, buf, BUF_SIZE);
printf("Read content: %s
", buf);
close(fd);
exit(0);
}

書き込みパイププログラム:client.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>

#define FIFO_NAME "myfifo"
#define BUF_SIZE 1024

int main(void) {
int fd;
char buf[BUF_SIZE] = "Hello procwrite, I come from process named procread!";

umask(0);

if (mkfifo(FIFO_NAME, S_IFIFO | 0666) == -1) {
perror("mkfifo error!");
exit(1);
}


if ((fd = open(FIFO_NAME, O_WRONLY)) == -1) { fifo
perror("open error!");
exit(1);
}


write(fd, buf, strlen(buf) + 1); /*strlen(buf)+1 '\0' */

close(fd);
//unlink(FIFO_NAME); fifo

exit(0);
}

Makefile
all:main
main:
gcc -g -Wall -O0 main.c -o main

client:
gcc -g -Wall -O0 client.c -o client

clean:
rm *.o main client

実行および出力:コンパイル後、client(実行後ブロック状態)を実行して別の端末を開いてmainプログラムを実行し、出力:参照
Read content: Hello procwrite, I come from process named procread!
完了