File:  [DVB] / dietlibc / libpthread / pthread_sys_logging.c
Revision 1.4: download - view: text, annotated - select for diffs
Mon Aug 18 17:32:53 2003 UTC (20 years, 9 months ago) by sanjiyan
Branches: MAIN
CVS tags: HEAD
- checkin of the new libpthread
- add confstr

#include <unistd.h>
#include <stdarg.h>

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

#include <syslog.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);
}

LinuxTV legacy CVS <linuxtv.org/cvs>