Linux pipe函式
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
1. 函式說明
pipe(建立管道):
1) 標頭檔案 #include<unistd.h>
2) 定義函式: int pipe(int filedes[2]);
3) 函式說明: pipe()會建立管道,並將檔案描述詞由引數filedes陣列返回。
filedes[0]為管道里的讀取端
filedes[1]則為管道的寫入端。
4) 返回值: 若成功則返回零,否則返回-1,錯誤原因存於errno中。
錯誤程式碼:
EMFILE 程序已用完檔案描述詞最大量
ENFILE 系統已無檔案描述詞可用。
EFAULT 引數 filedes 陣列地址不合法。
2. 舉例
#include <unistd.h>#include <stdio.h> int main( void ){ int filedes[2]; char buf[80]; pid_t pid; pipe( filedes ); pid=fork(); if (pid > 0) { printf ( "This is in the father process,here write a string to the pipe.\n" ); char s[] = "Hello world , this is write by pipe.\n"; write( filedes[1], s, sizeof(s) ); close( filedes[0] ); close( filedes[1] ); } else if(pid == 0) { printf( "This is in the child process,here read a string from the pipe.\n" ); read( filedes[0], buf, sizeof(buf) ); printf( "%s\n", buf ); close( filedes[0] ); close( filedes[1] ); } waitpid( pid, NULL, 0 ); return 0;}
執行結果:
[[email protected] src]# gcc pipe.c
[[email protected] src]# ./a.out
This is in the child process,here read a string from the pipe.
This is in the father process,here write a string to the pipe.
Hello world , this is write by pipe.
當管道中的資料被讀取後,管道為空。一個隨後的read()呼叫將預設的被阻塞,等待某些資料寫入。
若需要設定為非阻塞,則可做如下設定:
fcntl(filedes[0], F_SETFL, O_NONBLOCK);
fcntl(filedes[1], F_SETFL, O_NONBLOCK);