1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:37:44 +00:00

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

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