Linux 进程通信

今天学习了进程通信----------管道通讯,写出来以供自己以后的学习。
   管道是单向的、先进先出的、无结构、固定大小的字节流。
 
 
 
 
 
 
 
 
 
 
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <ctype.h>
#define MAXLINE 80

int main(void)
{
    int n,i;
    int fd[2];
    int fd1[2];

    pid_t pid;
    char line[MAXLINE];

    if (pipe(fd) < 0)
    {
        perror("pipe");
        exit(1);
    }
    if (pipe(fd1) < 0)
    {
        perror("pipe");
        exit(1);
    }

    if ((pid = fork()) < 0)
    {
        perror("fork");
        exit(1);
    }

    if (pid > 0)
    { /* parent */
        close(fd[0]);
        close(fd1[1]);
        write(fd[1], "hello world\n", 12);

        /*接收大写*/
        n = read(fd1[0],line,sizeof(line));
        write(1,line,n);
        wait(NULL);
    } else
    {       /* child */
        close(fd[1]);
        close(fd1[0]);
        n = read(fd[0], line, MAXLINE);
        
        write(STDOUT_FILENO, line, n);

        /*小写转大写*/
        for(i = 0;i < sizeof(line);i++)
        {
            line[i] = toupper(line[i]);
        }
        write(fd1[1],line,n);

    }
                
    return 0;
}

你可能感兴趣的:(linux,通讯)