From 9facce49283626fa0f7bc434eb17e83f6ea5ed0d Mon Sep 17 00:00:00 2001 From: Eric Allman Date: Sun, 13 Oct 1985 23:20:29 -0800 Subject: [PATCH 1/1] add LOG_NDELAY SCCS-vsn: sys/sys/syslog.h 4.8 --- usr/src/sys/sys/syslog.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/usr/src/sys/sys/syslog.h b/usr/src/sys/sys/syslog.h index 077d7559ee..60842fa5da 100644 --- a/usr/src/sys/sys/syslog.h +++ b/usr/src/sys/sys/syslog.h @@ -3,7 +3,7 @@ * 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% */ /* @@ -46,7 +46,11 @@ /* * 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_NDELAY 010 /* don't delay open */ -- 2.20.1