Updated: April 19, 2023 |
Send a message to the system logger
#include <stdio.h> #include <sys/slog.h> int slogb( int opcode, int severity, void * data, int size );
Use major codes in the range _SLOGC_PRIVATE_START and _SLOGC_PRIVATE_END in your applications, keeping in mind that many applications already use _SLOGC_TEST, which is (_SLOGC_PRIVATE_START + 0).
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The slog*() functions send log messages to the system logger, slogger2. To send formatted messages, use slogf(). If you have programs that scan log files for specified codes, you can use slogb() or slogi() to send a block of structures or ints, respectively.
Any value from the Errors section in MsgSend(), as well as:
See slogf().
Safety: | |
---|---|
Cancellation point | Yes |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |