Tagged Questions
6
votes
1answer
2k views
Difference between fflush and fsync
I thought fsync() does fflush() internally so using fsync() on a stream is OK. But i am getting unexpected result when executed under network I/O.
My code snippet:
FILE* fp = fopen(file,"wb"); ...
3
votes
3answers
90 views
Writing and reading the same fd without fsync in Linux
Suppose I write a block to a file descriptor without doing fsync and then read the same block from the same descriptor some time later. Is it guaranteed that I will receive the same information?
The ...