激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

Linux|Centos|Ubuntu|系統(tǒng)進(jìn)程|Fedora|注冊(cè)表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服務(wù)器之家 - 服務(wù)器系統(tǒng) - Linux - linux 命名管道實(shí)例詳解

linux 命名管道實(shí)例詳解

2022-01-24 17:12魏爾肖 Linux

這篇文章主要介紹了linux 命名管道實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下

linux進(jìn)程間通信——命名管道

  fifo(命名管道)不同于匿名管道之處在于它提供?個(gè)路徑名與之關(guān)聯(lián),以fifo的?件形式存儲(chǔ)于?件系統(tǒng)中。命名管道是?個(gè)設(shè)備?件,因此,即使進(jìn)程與創(chuàng)建fifo的進(jìn)程不存在親緣關(guān)系,只要可以訪問該路徑,就能夠通過fifo相互通信。值得注意的是,fifo(first input first output)總是按照先進(jìn)先出的原則?作,第?個(gè)被寫?的數(shù)據(jù)將?先從管道中讀出。

  創(chuàng)建命名管道的系統(tǒng)函數(shù)有兩個(gè):mknod和mkfifo。兩個(gè)函數(shù)均定義在頭?件sys/stat.h,函數(shù)原型如下:

?
1
2
3
4
#include <sys/types.h>
#include <sys/stat.h>
int mknod(const char *path,mode_t mod,dev_t dev);
int mkfifo(const char *path,mode_t mode);

   函數(shù)mknod參數(shù)中path為創(chuàng)建的命名管道的全路徑名:mod為創(chuàng)建的命名管道的模式,指明其存取權(quán)限;dev為設(shè)備值,該值取決于?件創(chuàng)建的種類,它只在創(chuàng)建設(shè)備?件時(shí)才會(huì)?到。這兩個(gè)函數(shù)調(diào)?成功都返回0,失敗都返回-1。下?使?mknod函數(shù)創(chuàng)建了?個(gè)命名管道:

?
1
2
3
4
5
6
7
8
9
10
11
umask(0);
 
if (mknod("/tmp/fifo",s_ififo | 0666) == -1)
 
{
 
perror("mkfifo error");
 
exit(1);
 
}

 函數(shù)mkfifo前兩個(gè)參數(shù)的含義和mknod相同。下?是使?mkfifo的?例代碼:

?
1
2
3
4
5
6
7
8
9
10
11
12
umask(0);
 
if (mkfifo("/tmp/fifo",s_ififo|0666) == -1)
 
{
 
 
perror("mkfifo error!");
 
exit(1);
 
}

下面為一個(gè)試?yán)?/span>

read端

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include<stdlib.h>
#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
#include<errno.h>
#define path "./fifo"
#define size 128
int main()
{
 umask(0);
 if (mkfifo (path,0666|s_ififo) == -1)
 {
 perror ("mkefifo error");
 exit(0);
 }
 int fd = open (path,o_rdonly);
 if (fd<0)
 {
  printf("open fd is error\n");
  return 0;
 }
 
 char buf[size];
 while(1){
 ssize_t s = read(fd,buf,sizeof(buf));
 if (s<0)
 {
  perror("read error");
  exit(1);
 }
 else if (s == 0)
 {
  printf("client quit! i shoud quit!\n");
  break;
 }
 else
 {
  buf[s] = '\0';
  printf("client# %s ",buf);
  fflush(stdout);
 }
 }
 close (fd);
 return 3;
}

下面為weite端:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include<stdlib.h>
#include<stdio.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<string.h>
#include<errno.h>
#include<fcntl.h>
 
#define path "./fifo"
#define size 128
int main()
{
 int fd = open(path,o_wronly);
 if (fd < 0)
 {
  perror("open error");
  exit(0);
 }
 
 char buf[size];
 while(1)
 {
  printf("please enter#:");
  fflush(stdout);
  ssize_t s = read(0,buf,sizeof(buf));
  if (s<0)
  {
   perror("read is failed");
   exit(1);
  }
  else if(s==0)
  {
   printf("read is closed!");
   return 1;
  }
  else{
   buf[s]= '\0';
   write(fd,buf,strlen(buf));
  }
 }
 return 0;
}

打開兩個(gè)終端:

 linux 命名管道實(shí)例詳解linux 命名管道實(shí)例詳解

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

原文鏈接:http://blog.csdn.net/qq_35116353/article/details/59117339

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 一区二区三区日韩精品 | 黄色大片高清 | 第一区免费在线观看 | 国产精品久久久久久久娇妻 | 在线视频成人永久免费 | 亚洲一区二区三区在线 | 日韩男人的天堂 | 久久精品亚洲欧美日韩精品中文字幕 | 免费在线观看亚洲 | 免费男女乱淫真视频 | 91 免费视频| 男人久久天堂 | 91短视频免费 | 国产成年人小视频 | 亚洲综合网站 | 国产成人精品免费视频大全办公室 | 亚洲网站免费观看 | 日韩毛片免费观看 | 日本黄色一级视频 | 性生活视频软件 | 国产精品hd免费观看 | 九九热在线视频观看这里只有精品 | 欧美在线另类 | 免费中文视频 | 精品成人久久久 | 久久丝袜脚交足黄网站免费 | 国产一区二区三区视频在线 | 久久9色 | 久久久久久久久久91 | 毛片在线免费播放 | 麻豆视频在线观看免费网站 | 亚洲天堂中文字幕在线观看 | 91成人在线免费观看 | 国产精品一区二区三区在线播放 | 欧美成人一区二区视频 | 黄色网址在线播放 | 久久艹精品 | 成人小视频免费在线观看 | 91精选视频在线观看 | 成人精品一区二区 | 久久精品成人免费国产片桃视频 |