diff options
author | jilles <jilles@FreeBSD.org> | 2009-11-21 14:28:32 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2009-11-21 14:28:32 +0000 |
commit | f225be7d75ed32bd8b760dadf4febdd70444731c (patch) | |
tree | 577f16ed2214690de633f6521e07d52dcb58724d /bin/sh/jobs.c | |
parent | a85bade2b14950ef85d7eff28bbc53d11842b207 (diff) | |
download | FreeBSD-src-f225be7d75ed32bd8b760dadf4febdd70444731c.zip FreeBSD-src-f225be7d75ed32bd8b760dadf4febdd70444731c.tar.gz |
sh: Some changes to stderr flushing:
* increase buffer size from 100 to 256 bytes
* remove implied flush from out2str(), in particular this avoids unnecessary
flushing in the middle of a -x tracing line
* rename dprintf() to out2fmt_flush(), make it flush out2 and use this
function in various places where flushing is desired after an error
message
Diffstat (limited to 'bin/sh/jobs.c')
-rw-r--r-- | bin/sh/jobs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c index be9acab..1ebf722 100644 --- a/bin/sh/jobs.c +++ b/bin/sh/jobs.c @@ -146,7 +146,7 @@ setjobctl(int on) do { /* while we are in the background */ initialpgrp = tcgetpgrp(ttyfd); if (initialpgrp < 0) { -out: out2str("sh: can't access tty; job control turned off\n"); +out: out2fmt_flush("sh: can't access tty; job control turned off\n"); mflag = 0; return; } @@ -1046,7 +1046,7 @@ stoppedjobs(void) if (jp->used == 0) continue; if (jp->state == JOBSTOPPED) { - out2str("You have stopped jobs.\n"); + out2fmt_flush("You have stopped jobs.\n"); job_warning = 2; return (1); } |