在兩個終端里用 gcc 分別編譯運行上面兩個文件,可以看到輸出結果如下:
[$ ./write_fifo ]
I am 7872 process
Send message: Process 7872's time is Mon Jan 16 18:00:23 2023
Send message: Process 7872's time is Mon Jan 16 18:00:24 2023
Send message: Process 7872's time is Mon Jan 16 18:00:25 2023
Send message: Process 7872's time is Mon Jan 16 18:00:26 2023
Send message: Process 7872's time is Mon Jan 16 18:00:27 2023
Send message: Process 7872's time is Mon Jan 16 18:00:28 2023
Send message: Process 7872's time is Mon Jan 16 18:00:29 2023
Send message: Process 7872's time is Mon Jan 16 18:00:30 2023
Send message: Process 7872's time is Mon Jan 16 18:00:31 2023
Send message: Process 7872's time is Mon Jan 16 18:00:32 2023
[$ ./write_fifo ]
I am 7872 process
Send message: Process 7872's time is Mon Jan 16 18:00:23 2023
Send message: Process 7872's time is Mon Jan 16 18:00:24 2023
Send message: Process 7872's time is Mon Jan 16 18:00:25 2023
Send message: Process 7872's time is Mon Jan 16 18:00:26 2023
Send message: Process 7872's time is Mon Jan 16 18:00:27 2023
Send message: Process 7872's time is Mon Jan 16 18:00:28 2023
Send message: Process 7872's time is Mon Jan 16 18:00:29 2023
Send message: Process 7872's time is Mon Jan 16 18:00:30 2023
Send message: Process 7872's time is Mon Jan 16 18:00:31 2023
Send message: Process 7872's time is Mon Jan 16 18:00:32 2023
上面的例子可以擴展成 客戶端進程—服務端進程通信的實例,write_fifo的作用類似于客戶端,可以打開多個客戶端向一個服務器發送請求信息,read_fifo類似于服務器,它適時監控著FIFO的讀端,當有數據時,讀出并進行處理,但是有一個關鍵的問題是,每一個客戶端必須預先知道服務器提供的FIFO接口,下圖顯示了這樣的操作:
三、消息隊列
消息隊列,是消息的鏈接表,存放在內核中。一個消息隊列由一個標識符(即隊列ID)來標識。
1、特點
- 消息隊列是面向記錄的,其中的消息具有特定的格式以及特定的優先級。
- 消息隊列獨立于發送與接收進程。進程終止時,消息隊列及其內容并不會被刪除。
- 消息隊列可以實現消息的隨機查詢,消息不一定要以先進先出的次序讀取,也可以按消息的類型讀取。
2、原型
// 創建或打開消息隊列:成功返回隊列ID,失敗返回-1
intmsgget(key_t key, int flag);
// 添加消息:成功返回0,失敗返回-1
intmsgsnd(int msqid, constvoid ptr, size_t size, int flag);
// 讀取消息:成功返回消息數據的長度,失敗返回-1
intmsgrcv(int msqid, void* ptr, size_t size, long type, int flag);
// 控制消息隊列:成功返回0, 失敗返回-1
intmsgctl(int msqid, int cmd, struct msqid_ds * buf);
在以下兩種情況下,msgget將創建一個新的消息隊列:
- 如果沒有與鍵值key相對應的消息隊列,并且flag中包含了
IPC_CREAT
標志位。 - key參數為IPC_PRIVATE。
函數msgrcv在讀取消息隊列時,type參數有下面幾種情況:
- type == 0,返回隊列中的第一個消息;
- type > 0,返回隊列中消息類型為 type 的第一個消息;
- type < 0,返回隊列中消息類型值小于或等于 type 絕對值的消息,如果有多個,則取類型值最小的消息。
可以看出,type值非 0 時用于以非先進先出次序讀消息。也可以把 type 看做優先級的權值。(其他的參數解釋,請自行Google之)
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。
舉報投訴
-
Linux
+關注
關注
87文章
11320瀏覽量
209833 -
IPC
+關注
關注
3文章
350瀏覽量
51959 -
進程間通信
+關注
關注
0文章
16瀏覽量
2449
發布評論請先 登錄
相關推薦
Linux現有的所有進程間IPC方式
在開始回答前,先簡單概括性地說說Linux現有的所有進程間IPC方式:1. **管道:**在創建時分配一個page大小的內存,緩存區大小比較有限;2
發表于 08-20 06:17
Linux進程間的五種通信方式介紹 3
進程間通信(IPC,InterProcess Communication)是指在不同進程之間傳播或交換信息。IPC的方式通常有管道(包括無名
Linux進程間的五種通信方式介紹 4
進程間通信(IPC,InterProcess Communication)是指在不同進程之間傳播或交換信息。IPC的方式通常有管道(包括無名
Linux進程間的五種通信方式介紹 6
進程間通信(IPC,InterProcess Communication)是指在不同進程之間傳播或交換信息。IPC的方式通常有管道(包括無名
Linux進程間的五種通信方式介紹 5
進程間通信(IPC,InterProcess Communication)是指在不同進程之間傳播或交換信息。IPC的方式通常有管道(包括無名
評論