diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-16 06:03:47 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-07-16 12:10:45 -0700 |
commit | 2d9b49789fadd039d43e5c1b6d09bebcc075227f (patch) | |
tree | 06bcd22c4a2d49e5249b7f891bd782ac7a70c72b /src | |
parent | 8f1629f0ad72437c034e06b4a2e04bf2e157c0bd (diff) | |
download | coreutils-2d9b49789fadd039d43e5c1b6d09bebcc075227f.tar.xz |
Fix capiTalization in comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/timeout.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/timeout.c b/src/timeout.c index 2d6dad8fb..33bb8e47b 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -35,7 +35,7 @@ This can be seen with `timeout 10 dd&` for example. However if one brings this group to the foreground with the `fg` command before the timer expires, the command will remain - in the sTop state as the shell doesn't send a SIGCONT + in the stop state as the shell doesn't send a SIGCONT because the timeout process (group leader) is already running. To get the command running again one can Ctrl-Z, and do fg again. Note one can Ctrl-C the whole job when in this state. @@ -333,9 +333,9 @@ main (int argc, char **argv) /* Setup handlers before fork() so that we handle any signals caused by child, without races. */ install_signal_handlers (term_signal); - signal (SIGTTIN, SIG_IGN); /* don't sTop if background child needs tty. */ - signal (SIGTTOU, SIG_IGN); /* don't sTop if background child needs tty. */ - signal (SIGCHLD, SIG_DFL); /* Don't inherit CHLD handling from parent. */ + signal (SIGTTIN, SIG_IGN); /* Don't stop if background child needs tty. */ + signal (SIGTTOU, SIG_IGN); /* Don't stop if background child needs tty. */ + signal (SIGCHLD, SIG_DFL); /* Don't inherit CHLD handling from parent. */ monitored_pid = fork (); if (monitored_pid == -1) |