in reply to Re^2: control-C to "jumpstart" windows process
in thread control-C to "jumpstart" windows process
If you are printing to STDOUT without having turned off the buffering, then the program will continue producing output and will not be blocked until the buffer has filled.
If the process completes before the buffer fills, then clearing the mark or select state will allow the ouput to finish though the process may have finished some time earlier.
The output will appear contiguous in both cases because of the buffering. No output is discarded, it is simply buffered and displayed once the freeze thaws.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: control-C to "jumpstart" windows process (line)
by tye (Sage) on Oct 18, 2006 at 16:25 UTC | |
by BrowserUk (Patriarch) on Oct 18, 2006 at 16:53 UTC |