使用系统函数时终端linux输出机制read()&写()

时间:2013-05-26 13:09:22

标签: c unix terminal stdout

代码:

#include <stdio.h>
#include <unistd.h>

int main(void)
{
    char buf[BUFSIZ];
    int n;

    while((n = read(0, buf, BUFSIZ)) > 0 && printf("1:%d ", n))
    {
        printf("2:%d ", n);
        write(1, buf, n);
    }

    return 0;
}

pupu(my input)
pupu(output)
popopo(my input)
popopo(output)
1:5 2:5 1:7 2:7(output)

我的问题:它是如何运作的?

(为什么在n_read之前缓冲文本输出?)

1 个答案:

答案 0 :(得分:1)

标准I / O函数(如printf缓冲,意味着在缓冲区已满或明确刷新之前不会打印到stdout的输出。

另一方面,直接写入输出文件描述符缓冲并直接写入。

这里你有混合直接和缓冲输出,并且在程序退出并刷新缓冲区之前,实际上不会写入缓冲输出。