久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

pipe函數(shù)使用

 lifei_szdz 2013-01-07

pipe函數(shù)使用  

2008-12-11 15:45:54|  分類: 天天向上 |字號 訂閱

pipe(建立管道)
表頭文件 #include
定義函數(shù) int pipe(int filedes[2]);
函數(shù)說明
    pipe()會建立管道,并將文件描述詞由參數(shù) filedes 數(shù)組返回,。
    filedes[0]為管道里的讀取端,所以pipe用read調用的
    filedes[1]則為管道的寫入端,。
   
返回值:  若成功則返回零,否則返回-1,錯誤原因存于 errno 中,。
錯誤代碼:
    EMFILE 進程已用完文件描述詞最大量
    ENFILE 系統(tǒng)已無文件描述詞可用。
    EFAULT 參數(shù) filedes 數(shù)組地址不合法,。
#include
#include
int main( void )
{
    int filedes[2];
    char buf[80];
    pid_t pid;
   
    pipe( filedes );
   
    if ( (pid=fork()) > 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
    {
        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.

    本站是提供個人知識管理的網(wǎng)絡存儲空間,,所有內容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內容中的聯(lián)系方式,、誘導購買等信息,謹防詐騙,。如發(fā)現(xiàn)有害或侵權內容,,請點擊一鍵舉報。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多