From: Eric Allman Date: Mon, 14 Oct 1985 07:20:29 +0000 (-0800) Subject: add LOG_NDELAY X-Git-Tag: BSD-4_3-Snapshot-Development~4201 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/9facce49283626fa0f7bc434eb17e83f6ea5ed0d?hp=c8ad461acb04125d3eb79b167794860dfaefc46c add LOG_NDELAY SCCS-vsn: sys/sys/syslog.h 4.8 --- 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 */