diff options
-rw-r--r-- | hurd/debugging/translator/capturing_stdout_and_stderr.mdwn | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hurd/debugging/translator/capturing_stdout_and_stderr.mdwn b/hurd/debugging/translator/capturing_stdout_and_stderr.mdwn index 8430287a..e95d6e12 100644 --- a/hurd/debugging/translator/capturing_stdout_and_stderr.mdwn +++ b/hurd/debugging/translator/capturing_stdout_and_stderr.mdwn @@ -24,3 +24,10 @@ Sometimes it may already be helpful to capture a translator's `stdout` and (Trying to run [[GDB]] in this case was of no help -- due to a bug in GDB (supposedly) it wouldn't catch the fault.) + +Be made aware that both `stdout` and `stderr` will be block bufferend and no +longer line buffered when doing such a redirection, so you'll have to arrange +for appropriate `fflush`es on these, or force them to be line buffered again +using the appropriate glibc magic (`setvbuf`). Otherwise you'll see text in +the output files only if either glibc herself decides to flush (after some KiB +of text) the after translator exits. |