91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux進程通信之FIFO如何實現

發布時間:2021-05-25 10:07:26 來源:億速云 閱讀:294 作者:小新 欄目:服務器

這篇文章給大家分享的是有關Linux進程通信之FIFO如何實現的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

FIFO通信(first in first out)

FIFO 有名管道,實現無血緣關系進程通信。

  • 創建一個管道的偽文件

    • a.mkfifo testfifo 命令創建

    • b.也可以使用函數int mkfifo(const char *pathname, mode_t mode);

  • 內核會針對fifo文件開辟一個緩沖區,操作fifo文件,可以操作緩沖區,實現進程間通信–實際上就是文件讀寫

man 3 mkfifo

#include <sys/types.h>
#include <sys/stat.h>
int mkfifo(const char *pathname, mode_t mode);

注意事項:

FIFOs
Opening the read or write end of a FIFO blocks until the other end is also opened (by another process or thread). See
fifo(7) for further details.

打開fifo文件時候,read端會阻塞等待write端open,write端同理,也會阻塞等待另外一段打開。

代碼示例:
file_w.c 寫端

#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>

int main(int argc, char *argv[]) {
  if(argc != 2) {
    printf("./a.out filename1\n");
    return -1;
  }
  printf("begin open w\n");
  int o_ret = open(argv[1], O_WRONLY);
  printf("end open w\n");
  char buf[256];
  int num = 0;
  while (1) {
    memset(buf, '\0', sizeof(buf));
    sprintf(buf, "xiaoming--%d", num++);
    printf("strlen(buf) = %d\n", strlen(buf));
    write(o_ret, buf, strlen(buf));
    sleep(1);
  }
  close(o_ret);
  return 0;
}

file_r.c 讀端

#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>

int main(int argc, char *argv[]) {
  if(argc != 2) {
    printf("./a.out filename1\n");
    return -1;
  }
  printf("begin open r\n");
  int o_ret = open(argv[1], O_RDONLY);
  printf("end open r\n");
  char buf[256];
  int num = 0;
  while (1) {
    memset(buf, '\0', sizeof(buf));
    read(o_ret, buf, sizeof(buf));
    printf("strlen(buf) = %d\n", strlen(buf));
    printf("read is%s\n", buf);
  }
  close(o_ret);
  return 0;
}

什么是Linux系統

Linux是一種免費使用和自由傳播的類UNIX操作系統,是一個基于POSIX的多用戶、多任務、支持多線程和多CPU的操作系統,使用Linux能運行主要的Unix工具軟件、應用程序和網絡協議。

感謝各位的閱讀!關于“Linux進程通信之FIFO如何實現”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

婺源县| 内黄县| 东海县| 吴桥县| 信丰县| 固镇县| 锡林浩特市| 灌南县| 杭锦旗| 麻江县| 新丰县| 临颍县| 阳高县| 桑日县| 永安市| 尚义县| 淮滨县| 姚安县| 绥芬河市| 桐梓县| 东港市| 怀化市| 清镇市| 无极县| 长垣县| 临武县| 遵义县| 遵义市| 炉霍县| 尖扎县| 洪雅县| 庆云县| 上饶县| 大同县| 高台县| 乐山市| 兴安县| 平定县| 昭平县| 密山市| 渭南市|