`
haoningabc
  • 浏览: 1453810 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

管道的例子

阅读更多
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>

int pipe_test[2];  

int main()
{
    pid_t pid;
    char buffer[32];

    memset(buffer, 0, 32);
    if(pipe(pipe_test) < 0)
    {
        printf("Failed to create pipe!\n");
        return 0;
    }

    if(0 == (pid = fork()))
    {
        close(pipe_test[1]);
        sleep(3);
        if(read(pipe_test[0], buffer, 32) > 0)
        {
            printf("Receive data from server, %s!\n", buffer);
        }
        close(pipe_test[0]);
    }
    else
    {
        close(pipe_test[0]);
        if(-1 != write(pipe_test[1], "hello", strlen("hello")))
        {
            printf("Send data to client, hello!\n");
        }
        close(pipe_test[1]);
        waitpid(pid, NULL, 0);
    }

    return 1;
}


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics