使用管道同步进程之间的文件写入

时间:2013-02-01 04:35:11

标签: c linux fork pipe

我有一些我一直盯着看的东西,并且无法弄明白。我在C中编写代码,它应该使用管道来回传递一个字节,允许我在父进程和子进程之间切换,然后轮流将字符串写入文件。这是我的代码:

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
int fd[2];
int fd2[2];
char token = 'a';
int file = open("output.txt", O_RDWR|O_CREAT|O_TRUNC, S_IRUSR|S_IWUSR);
if (pipe(fd) == -1 || pipe(fd) == -1)
{
    printf("Pipe failed");
    return(-1);
}
pipe(fd2);
int pid = fork();
int i;
int j;
write(fd[1], token, 1);
if (pid) // Parent enters here
{
    for (i = 0; i < 100;)
    {
        if (read(fd[0], token, 1) != -1)
        {
            write(file, "ppppppp", 7);
            i++;
            write(fd2[1], token, 1); 

        }
        //usleep(500000);
    }
    wait(); 
}
else if (pid == 0) // Child enters here
{
    for (j = 0; j < 100;)
    {
        if (read(fd2[0], token, 1) != -1)
        {
            write(file, "ccccc", 5);
            j++;
            write(fd[1], token, 1); 
        }
        //usleep(500000);
    } 
}
else // Error creating child
{
    exit (-1);
}        
close(file);
return 0;
}

我知道当我不使用管道时,对文件的写入有效,但现在我得到了一个无限循环,我不知道问题是什么。

1 个答案:

答案 0 :(得分:-1)

我明白了!有趣的是小事情会有所不同。