LibC: Add LOG_NOWAIT stub to syslog.h

Needed for porting https://fio.readthedocs.io
This commit is contained in:
Brian Gianforcaro 2021-04-21 01:57:44 -07:00 committed by Linus Groh
parent 2ebb3f3c0d
commit 56ba3e1cbd
Notes: sideshowbarker 2024-07-18 19:18:56 +09:00

View file

@ -101,6 +101,8 @@ struct syslog_data {
#define LOG_NDELAY (1 << 3)
/* Log to stderr as well. */
#define LOG_PERROR (1 << 4)
/* Don't wait for child processes created while logging the message. */
#define LOG_NOWAIT (1 << 5)
/* This is useful to have, but has to be stored weirdly for compatibility. */
#ifdef SYSLOG_NAMES