Linux pipe函數

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;
}

運行結果:


[root@localhost src]# gcc pipe.c 
[root@localhost 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);


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章