diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-16 20:18:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-16 20:18:54 +0000 |
commit | 7e3a5f58bcd2c40745ed7eaaa8952b29c3da4447 (patch) | |
tree | 042c55bdaaa2ccbbed11eb474840ae727f61abec /sysklogd/klogd.c | |
parent | 7c2db5c1988da00c101cc2aeb8767f18a1fe9eb9 (diff) | |
download | busybox-w32-7e3a5f58bcd2c40745ed7eaaa8952b29c3da4447.tar.gz busybox-w32-7e3a5f58bcd2c40745ed7eaaa8952b29c3da4447.tar.bz2 busybox-w32-7e3a5f58bcd2c40745ed7eaaa8952b29c3da4447.zip |
dmesg,klogd: make code more readable
libbb: explain why we declare klogctl
libbb: move defs around so that order makes more sense
Diffstat (limited to 'sysklogd/klogd.c')
-rw-r--r-- | sysklogd/klogd.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sysklogd/klogd.c b/sysklogd/klogd.c index 11642461d..72f3b559c 100644 --- a/sysklogd/klogd.c +++ b/sysklogd/klogd.c | |||
@@ -24,16 +24,17 @@ | |||
24 | static void klogd_signal(int sig ATTRIBUTE_UNUSED) | 24 | static void klogd_signal(int sig ATTRIBUTE_UNUSED) |
25 | { | 25 | { |
26 | klogctl(7, NULL, 0); | 26 | klogctl(7, NULL, 0); |
27 | klogctl(0, 0, 0); | 27 | klogctl(0, NULL, 0); |
28 | syslog(LOG_NOTICE, "Kernel log daemon exiting"); | 28 | syslog(LOG_NOTICE, "klogd: exiting"); |
29 | exit(EXIT_SUCCESS); | 29 | exit(EXIT_SUCCESS); |
30 | } | 30 | } |
31 | 31 | ||
32 | #define OPT_LEVEL 1 | ||
33 | #define OPT_FOREGROUND 2 | ||
34 | |||
35 | #define KLOGD_LOGBUF_SIZE BUFSIZ | ||
36 | #define log_buffer bb_common_bufsiz1 | 32 | #define log_buffer bb_common_bufsiz1 |
33 | enum { | ||
34 | KLOGD_LOGBUF_SIZE = sizeof(log_buffer), | ||
35 | OPT_LEVEL = (1 << 0), | ||
36 | OPT_FOREGROUND = (1 << 1), | ||
37 | }; | ||
37 | 38 | ||
38 | int klogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 39 | int klogd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
39 | int klogd_main(int argc, char **argv) | 40 | int klogd_main(int argc, char **argv) |