summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_sys_logging.c
blob: 6070ad219ab0122e8db048d2dc0c13e8c8930b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <unistd.h>
#include <stdarg.h>

#include <pthread.h>
#include "thread_internal.h"

static pthread_mutex_t mutex_syslog = PTHREAD_MUTEX_INITIALIZER;

void closelog(void)
{
  pthread_cleanup_push((void(*)(void*))pthread_mutex_unlock,&mutex_syslog);
  pthread_mutex_lock(&mutex_syslog);
  __libc_closelog();
  pthread_cleanup_pop(1);
}

void openlog(const char *ident, int option, int facility)
{
  pthread_cleanup_push((void(*)(void*))pthread_mutex_unlock,&mutex_syslog);
  pthread_mutex_lock(&mutex_syslog);
  __libc_openlog(ident, option, facility);
  pthread_cleanup_pop(1);
}

void vsyslog(int priority, const char *format, va_list arg_ptr)
{
  pthread_cleanup_push((void(*)(void*))pthread_mutex_unlock,&mutex_syslog);
  pthread_mutex_lock(&mutex_syslog);
  __libc_vsyslog(priority, format, arg_ptr);
  pthread_cleanup_pop(1);
}