aboutsummaryrefslogtreecommitdiff
path: root/init/init_shared.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-30 18:17:21 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-05-30 18:17:21 +0000
commit7ae155398062be93c71116fcc757471d5a324ddf (patch)
tree6e593a9d0ccf65ea57e7143d444258820a49c8ed /init/init_shared.c
parenta8622e049d67c5cd45a0b2e221d37b9176d98fb2 (diff)
downloadbusybox-w32-7ae155398062be93c71116fcc757471d5a324ddf.tar.gz
busybox-w32-7ae155398062be93c71116fcc757471d5a324ddf.tar.bz2
busybox-w32-7ae155398062be93c71116fcc757471d5a324ddf.zip
- consolidate "Sending SIG%s to all processes"; untested..
text data bss dec hex filename 5379 32 8 5419 152b init/init.o.oorig 5358 32 8 5398 1516 init/init.o
Diffstat (limited to 'init/init_shared.c')
-rw-r--r--init/init_shared.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/init/init_shared.c b/init/init_shared.c
index 6404da55a..190d0a33e 100644
--- a/init/init_shared.c
+++ b/init/init_shared.c
@@ -44,16 +44,16 @@ int bb_shutdown_system(unsigned long magic)
44 sync(); 44 sync();
45 45
46 /* Send signals to every process _except_ pid 1 */ 46 /* Send signals to every process _except_ pid 1 */
47 message = "Sending SIGTERM to all processes."; 47 message = "TERM";
48 syslog(pri, "%s", message); 48 syslog(pri, init_sending_format, message);
49 printf(bb_shutdown_format, message); 49 printf(bb_shutdown_format, message);
50 50
51 kill(-1, SIGTERM); 51 kill(-1, SIGTERM);
52 sleep(1); 52 sleep(1);
53 sync(); 53 sync();
54 54
55 message = "Sending SIGKILL to all processes."; 55 message = "KILL";
56 syslog(pri, "%s", message); 56 syslog(pri, init_sending_format, message);
57 printf(bb_shutdown_format, message); 57 printf(bb_shutdown_format, message);
58 58
59 kill(-1, SIGKILL); 59 kill(-1, SIGKILL);