Posts Tagged ‘syslog’

com_err – common error display routine
USAGE
#include

void com_err (whoami, code, format, …);
const char *whoami;
long code;
[...]

Thursday, August 27th, 2009 at 00:26 | Comments Off
Categories: c

closelog, openlog, syslog – send messages to the system logger
USAGE
#include <syslog.h>

void openlog(const char *ident, int option, int facility);
void syslog(int priority, const char *format, …);
void closelog(void);

[...]

Thursday, August 27th, 2009 at 00:26 | Comments Off
Categories: O, S, c

atd – run jobs queued for later execution
USAGE
atd [-l load_avg] [-b batch_interval] [-d] [-s]

DESCRIPTION
atd runs jobs queued by at(1).

OPTIONS
-l Specifies a limiting load factor, over which batch jobs [...]

Wednesday, August 26th, 2009 at 02:26 | Comments Off
Categories: A
TOP