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
This commit is contained in:
Axel Dörfler 2003-11-13 03:30:21 +00:00
parent 12d314225a
commit f0e6952fc8

View File

@ -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 */