So I know printf() is higher level than write() and ends up using write(). Printf() is buffered and write() makes system calls.
Example 1, if I were to run a program with printf() before write() then it would output the value of printf() before the value of write().
Example 2, if I were to run the same program and have it go through output redirection into a file, the value of write() outputs before printf().
#include <stdio.h>
#include <unistd.h>
int main()
{
printf("This is a printf test\n");
write(STDOUT_FILENO, "This is a write test\n", 21);
return 0;
}
I don’t understand what is happening here. In example 1, is the program waiting for printf()s output before running write()? In example 2, is the program redirecting the first output that is ready? And because write() is lower level, and does not need to buffer like printf() then it is printed first?
You answered your own question.
printfis buffered andwriteis not.For output to a terminal, the C stdio system has a feature that it flushes the buffers whenever it sees a newline
'\n'. For more about stdio buffering look at the documentation forsetvbuf.But when output is to a file to increase speed the stdio system does not flush the buffer. That is why
writeoutput appears first.Here is some of the
straceoutput from running on my Linux system:The
fstatis where the stdio system detects the type of output file descriptor 1 is connected to. I believe it looks atst_modeand sees that it is a character device. A disk file would be a block device. Themmapis the memory allocation for the stdio buffer, which is 4K. Then the output is written.