Right when I am at fflush(stdout) and I break there in GDB, can I know what is there in stdout before I actually print it?
How can I know what is there in stdout at any point in time?
|
feedback
|
|
You almost certainly can, but you probably shouldn't. The standard requires only that I'd generally agree with other posters that However, if you have lost track of what parts of your code might be writing to a stream, then it can occasionally be useful to watch the stream in action and catch it changing. In practice, The stdio.h provided in MinGW GCC 3.4.5 implements
and implements
From this you can tell that the end of the buffer is pointed to by the member So, if you watch | |||
|
feedback
|
|
If you allocate a buffer yourself and pass it to setvbuf, I suppose you can access it before a flush, since it's yours to begin with. EDIT: Your comment made your intent more clear, but what you want won't be easy:
From then on, That said, that's not an ideal solution at all. A far better approach would be using a logging-enabled output function everywhere in your code. | ||||
feedback
|
|
I think it is better to flush | |||
|
feedback
|
|
use "setbuf()", and keep a handle to the buffer, which you can peek at. Unfortunately, I don't know off the top how to find the offset and length of unflushed data. | |||
|
feedback
|
setvbuf(stdout, NULL, _IONBF, 0)? – Adam Rosenfield Oct 29 '10 at 21:55