diff options
author | ajs <ajs> | 2004-11-28 23:00:01 +0000 |
---|---|---|
committer | ajs <ajs> | 2004-11-28 23:00:01 +0000 |
commit | 7d149b8e48ef72021aefddf44f400bccaf391870 (patch) | |
tree | 67a7aeda5a2d98aabcafabe9e936a5711076ad41 /lib/ChangeLog | |
parent | 2557aed16aa98f90d70a14ad4546742c79af7668 (diff) |
2004-11-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* log.h: Remove several unused fields from struct zlog. Add comments
for other fields, and add one new field syslog_options that is
used in the new syslog_sigsafe implementation.
* log.c: (syslog_sigsafe) New function to send syslog messages in
an async-signal safe way that can be used inside a signal handler.
(syslog_connect) New function to connect to syslog daemon inside a
signal handler. This function supports only systems where /dev/log
is a unix datagram socket (e.g. not Solaris).
(zlog_signal) Call syslog_sigsafe if syslog logging is enabled.
(zlog_backtrace_sigsafe) Call syslog_sigsafe if syslog logging is
enabled.
(openzlog) Save syslog_options for use in syslog_sigsafe.
(num_append) Fix bug: handle 0 properly.
(hex_append) New function to print a u_long in hex format.
Diffstat (limited to 'lib/ChangeLog')
-rw-r--r-- | lib/ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 74862d22..8dde0eb5 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,20 @@ +2004-11-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + + * log.h: Remove several unused fields from struct zlog. Add comments + for other fields, and add one new field syslog_options that is + used in the new syslog_sigsafe implementation. + * log.c: (syslog_sigsafe) New function to send syslog messages in + an async-signal safe way that can be used inside a signal handler. + (syslog_connect) New function to connect to syslog daemon inside a + signal handler. This function supports only systems where /dev/log + is a unix datagram socket (e.g. not Solaris). + (zlog_signal) Call syslog_sigsafe if syslog logging is enabled. + (zlog_backtrace_sigsafe) Call syslog_sigsafe if syslog logging is + enabled. + (openzlog) Save syslog_options for use in syslog_sigsafe. + (num_append) Fix bug: handle 0 properly. + (hex_append) New function to print a u_long in hex format. + 2004-11-28 Hasso Tepper <hasso at quagga.net> * command.h: DEFUN_DEPRECATED passes attribute to DEFUN as well. |