add LOG_NDELAY
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Mon, 14 Oct 1985 07:20:29 +0000 (23:20 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Mon, 14 Oct 1985 07:20:29 +0000 (23:20 -0800)
SCCS-vsn: sys/sys/syslog.h 4.8

usr/src/sys/sys/syslog.h

index 077d755..60842fa 100644 (file)
@@ -3,7 +3,7 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
- *     @(#)syslog.h    4.7 (Berkeley) %G%
+ *     @(#)syslog.h    4.8 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
 
 /*
  *  Option flags for openlog.
 
 /*
  *  Option flags for openlog.
+ *
+ *     LOG_ODELAY no longer does anything; LOG_NDELAY is the
+ *     inverse of what it used to be.
  */
 #define        LOG_PID         01      /* log the pid with each message */
 #define        LOG_CONS        02      /* log on the console if errors in sending */
 #define        LOG_ODELAY      04      /* delay open until syslog() is called */
  */
 #define        LOG_PID         01      /* log the pid with each message */
 #define        LOG_CONS        02      /* log on the console if errors in sending */
 #define        LOG_ODELAY      04      /* delay open until syslog() is called */
+#define LOG_NDELAY     010     /* don't delay open */