diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-05-13 13:41:42 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-05-13 13:48:56 +0100 |
commit | 45b8fe430dced8c489cb64491b8716cffeeca8c3 (patch) | |
tree | 7e5858933105e4f797ce545c70aaf531ed02f906 /NEWS | |
parent | 703747f892d3ec4713b97d4bff770a80122cd1ef (diff) | |
download | coreutils-45b8fe430dced8c489cb64491b8716cffeeca8c3.tar.xz |
timeout: with --foreground don't send SIGCONT
* src/timeout.c (cleanup): Don't send SIGCONT to the monitored program
when --foreground is specified, as it's generally not needed for
foreground programs, and can cause intermittent signal delivery
issues with monitors like GDB for example.
* doc/coreutils.texi (timeout invocation): Mention that SIGCONT
is not sent with --foreground.
* NEWS: Mention the behavior change.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -92,6 +92,8 @@ GNU coreutils NEWS -*- outline -*- tee does not treat the file operand '-' as meaning standard output any longer, for better conformance to POSIX. This feature was added in coreutils-5.3.0. + timeout --foreground no longer sends SIGCONT to the monitored process, + which was seen to cause intermittent issues with GDB for example. ** Improvements |