Welcome to mirror list, hosted at ThFree Co, Russian Federation.

syslog_test.c « tests - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb4c691b197238e180fb826874f8ef242884e627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}