Flush all input/output buffers
#include <stdio.h> int flushall( void );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The flushall() function flushes all buffers associated with open input/output streams. A subsequent read operation on an input stream reads new data from the associated stream.
Calling the flushall() function is equivalent to calling fflush() for all open streams.
Safety: | |
---|---|
Cancellation point | Yes |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |
The QNX 4 version of this function returns the number of streams flushed.