diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-31 01:07:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-31 01:07:05 +0000 |
commit | fc2a4fc2ba8022ce2ea6dc0f66ba4ef0be1fa805 (patch) | |
tree | af3801599931ef97baf3c39cfe11a2d93b28ac10 | |
parent | 72c99af0b44e150a712891f6a3ea7d41827cfffe (diff) | |
download | busybox-w32-fc2a4fc2ba8022ce2ea6dc0f66ba4ef0be1fa805.tar.gz busybox-w32-fc2a4fc2ba8022ce2ea6dc0f66ba4ef0be1fa805.tar.bz2 busybox-w32-fc2a4fc2ba8022ce2ea6dc0f66ba4ef0be1fa805.zip |
init: small correction in a comment
-rw-r--r-- | init/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c index 3a02ece4b..59d070950 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -654,8 +654,8 @@ static void kill_all_processes(void) | |||
654 | * and unmasks all signals. However, for process with PID==1, | 654 | * and unmasks all signals. However, for process with PID==1, |
655 | * default action (SIG_DFL) on any signal is to ignore it, | 655 | * default action (SIG_DFL) on any signal is to ignore it, |
656 | * even for special signals SIGKILL and SIGCONT. | 656 | * even for special signals SIGKILL and SIGCONT. |
657 | * (SIGSTOP is still handled specially, at least in 2.6.20) | ||
658 | * Also, any signal can be caught or blocked. | 657 | * Also, any signal can be caught or blocked. |
658 | * (but SIGSTOP is still handled specially, at least in 2.6.20) | ||
659 | * | 659 | * |
660 | * We install two kinds of handlers, "immediate" and "delayed". | 660 | * We install two kinds of handlers, "immediate" and "delayed". |
661 | * | 661 | * |