• 技术文章 >php教程 >PHP开发

    Linux pipe函数

    高洛峰高洛峰2016-12-13 11:34:30原创769
    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);

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:Linux pipe
    上一篇:linux编程之pipe()函数 下一篇:Linux C编程 - 管道pipe
    20期PHP线上班

    相关文章推荐

    • 【活动】充值PHP中文网VIP即送云服务器• Zend Framework教程之Application用法实例详解• Flex DataGrid自动编号示例• 如何优化设置phpcms v9的url规则?• AngularJS实现根据变量改变动态加载模板的方法• PHP 页面编码声明方法详解(header或meta)
    1/1

    PHP中文网