From: Ulrich Drepper Date: Fri, 6 Dec 2002 11:31:06 +0000 (+0000) Subject: (log_cleanup): New function. (openlog): Use log_cleanup instead of __libc_mutex_unloc... X-Git-Tag: cvs/glibc-2_3_2~623 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=d5ddad4ff48cc7887281259dacf5ac455d5a9dd8;p=glibc.git (log_cleanup): New function. (openlog): Use log_cleanup instead of __libc_mutex_unlock. (closelog): Likewise. --- diff --git a/misc/syslog.c b/misc/syslog.c index 5b3bca2679..c7d92974e9 100644 --- a/misc/syslog.c +++ b/misc/syslog.c @@ -329,14 +329,19 @@ openlog_internal(const char *ident, int logstat, int logfac) } } + +static void +log_cleanup (void *arg) +{ + __libc_lock_unlock (*(__libc_lock_t *) arg); +} + void openlog (const char *ident, int logstat, int logfac) { #ifdef _LIBC_REENTRANT /* Protect against multiple users. */ - __libc_cleanup_region_start (1, - (void (*) __P ((void *))) __libc_mutex_unlock, - &syslog_lock); + __libc_cleanup_region_start (1, log_cleanup, &syslog_lock); __libc_lock_lock (syslog_lock); #endif @@ -370,9 +375,7 @@ closelog () { #ifdef _LIBC_REENTRANT /* Protect against multiple users. */ - __libc_cleanup_region_start (1, - (void (*) __P ((void *))) __libc_mutex_unlock, - &syslog_lock); + __libc_cleanup_region_start (1, log_cleanup, &syslog_lock); __libc_lock_lock (syslog_lock); #endif