Lines Matching refs:syslog
2 * include/syslog.h
51 * delayed until syslog() is called. (This is the default,
133 * calls to syslog(). The ident argument is a string that is prepended to
142 * sent to the logging facility. The syslog() function ensures that
151 * LOG_ODELAY - Delay open until syslog() is called.
156 * termination using SIGCHLD, since syslog() may otherwise block
163 * It is not necessary to call openlog() prior to calling syslog().
175 * The openlog() and syslog() functions may allocate a file descriptor.
177 * by previous calls to openlog() or syslog().
186 * Name: syslog and vsyslog
189 * syslog() generates a log message. The priority argument is formed by
190 * ORing the facility and the level values (see include/syslog.h). The
197 * The function vsyslog() performs the same task as syslog() with the
203 int syslog(int priority, const char *format, ...);
210 * syslog() generates a log message. The priority argument is formed by
211 * ORing the facility and the level values (see include/syslog.h). The
216 * difference between syslog() and lowsyslog() is that the syslog()
217 * interface writes to the syslog device (usually fd=1, stdout) whereas
224 * the underlying syslog device.
240 # define lowsyslog(p,f,...) syslog(p,f,##__VA_ARGS__)
262 * in order to disable all syslog levels.
267 * REVISIT: Per POSIX the syslog mask should be a per-process value but in