X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fmutex.c;h=2ed3afca39e9bdd5a06ea2d064e269bff7d5cd68;hp=aeaf2214c9ab17419fb2d9398c3eec1317d6e487;hb=43a9d38d20c1b1bcd1a03b2445a501d27526bd35;hpb=263231600cbe7a49190b38fc724199fe2e69f7dd diff --git a/src/mutex.c b/src/mutex.c index aeaf221..2ed3afc 100644 --- a/src/mutex.c +++ b/src/mutex.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2010 Index Data + * Copyright (C) 1995-2011 Index Data * See the file LICENSE for details. */ @@ -21,10 +21,12 @@ #include #include #include - +#include #ifdef WIN32 #include +#include #endif +#include #if HAVE_SYS_TIME_H #include @@ -34,15 +36,7 @@ #include #endif -struct yaz_mutex { -#ifdef WIN32 - CRITICAL_SECTION handle; -#elif YAZ_POSIX_THREADS - pthread_mutex_t handle; -#endif - char *name; - int log_level; -}; +#include "mutex-p.h" void yaz_mutex_create(YAZ_MUTEX *p) { @@ -100,7 +94,7 @@ void yaz_mutex_enter(YAZ_MUTEX p) d = 1000000LL * ((long long) tv2.tv_sec - tv1.tv_sec) + tv2.tv_usec - tv1.tv_usec; yaz_log(p->log_level, "yaz_mutex_enter: %p tid=%p name=%s " - "lock delay=%lld", + "lock delay %lld", p, (void *) pthread_self(), p->name, d); #endif }