diff options
Diffstat (limited to 'tests/syslog_test.c')
-rw-r--r-- | tests/syslog_test.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/syslog_test.c b/tests/syslog_test.c new file mode 100644 index 0000000..fb4c691 --- /dev/null +++ b/tests/syslog_test.c @@ -0,0 +1,19 @@ +#include <syslog.h> + +int do_log(char* msg, int delay) +{ + openlog("testlog", LOG_PID, LOG_DAEMON); + while(1) { + syslog(LOG_ERR, "%s: testing one, two, three\n", msg); + sleep(delay); + } + closelog(); + return(0); +}; + +int main(void) +{ + if (fork()==0) + do_log("A", 2); + do_log("B", 3); +} |