I don't understand why sometimes I need to use fflush() and sometimes not.
My program is segfaulting at the moment and I am debugging it with print statements. When a program segfaults, does stdout not flush its buffer automatically?
|
feedback
|
Sometimes the
Stdio buffers are flushed by | ||||
|
feedback
|
|
No, why should it. The program gets killed by the operating system. If a segfault occurs, the program is no longer in a meaningful state, so nothing can safely happen at that point other than immediate termination. (And don't nobody try to register a signal handler for | |||||
feedback
|
See this site. | |||
|
feedback
|
stdoutis just a pointer, it doesn't "do" anything by itself. The real question would be, "doesn't the OS flush all open files?" – Kerrek SB Nov 29 '11 at 19:10