C++ fstream's write operation is Sync or aSync?
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
hi everybody, the C++ fstream's write operation is Sync or aSync?
-
hi everybody, the C++ fstream's write operation is Sync or aSync?
it's buffered, so you might not see the data in the file until the buffer flushes.
-
it's buffered, so you might not see the data in the file until the buffer flushes.
so the fstream's write operation will not be blocked?