Make the sys logger for so that concurrent logging will work

properly (see tests/syslog_test.c for example).
 -Erik
This commit is contained in:
Erik Andersen
2000-04-19 18:52:56 +00:00
parent 1101d23604
commit e3ed156eeb
5 changed files with 162 additions and 92 deletions

19
tests/syslog_test.c Normal file
View File

@@ -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);
}