From f0e6952fc8bbaa91b921229b429267c83c029b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 13 Nov 2003 03:30:21 +0000 Subject: [PATCH] Added comments to LOG_SERIAL and LOG_PERROR. Note, LOG_SERIAL does neither work in our implementation, nor in the original implementation by Be. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5345 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/syslog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/posix/syslog.h b/headers/posix/syslog.h index 63054cf664..13307db275 100644 --- a/headers/posix/syslog.h +++ b/headers/posix/syslog.h @@ -11,8 +11,8 @@ #define LOG_CONS (2 << 12) /* log to the system console on error */ #define LOG_ODELAY (4 << 12) /* delay open until syslog() is called */ #define LOG_NDELAY (8 << 12) /* connect to the syslog daemon immediately */ -#define LOG_SERIAL (16 << 12) -#define LOG_PERROR (32 << 12) +#define LOG_SERIAL (16 << 12) /* dump to serial output as well (not implemented) */ +#define LOG_PERROR (32 << 12) /* dump to stderr as well */ #define LOG_NOWAIT (64 << 12) /* do not wait for child processes */