Thread cancellation tests in do_compress() and do_decompress().
[pwmd.git] / src / lock.h
blob32d1283c73594534ff7cf8328801f6617fc814a0
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006-2009 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
19 #ifndef LOCK_H
20 #define LOCK_H
22 #include <pthread.h>
23 #include <errno.h>
24 #include "cache.h"
26 #define DEBUG 1
27 #ifdef DEBUG
28 #define MUTEX_LOCK_DEBUG \
29 log_write("%s(%i): %s: LOCK", __FILE__, __LINE__, __FUNCTION__);
30 #define MUTEX_UNLOCK_DEBUG \
31 log_write("%s(%i): %s: UNLOCK", __FILE__, __LINE__, __FUNCTION__);
32 #else
33 #define MUTEX_LOCK_DEBUG
34 #define MUTEX_UNLOCK_DEBUG
35 #endif
37 #define CACHE_LOCK(ctx) MUTEX_TRYLOCK(ctx, &cache_mutex)
38 #define CACHE_UNLOCK MUTEX_UNLOCK(&cache_mutex)
40 #define MUTEX_LOCK(m) \
41 MUTEX_LOCK_DEBUG pthread_mutex_lock(m)
43 #define MUTEX_UNLOCK(m) \
44 MUTEX_UNLOCK_DEBUG pthread_mutex_unlock(m)
46 #define MUTEX_TRYLOCK(ctx, m) \
47 if (pthread_mutex_trylock(m) == EBUSY) { \
48 if (ctx) \
49 send_status(ctx, STATUS_LOCKED, NULL); \
50 log_write(N_("%s(%i): %s: mutex is LOCKED"), __FILE__, __LINE__, \
51 __FUNCTION__); \
52 MUTEX_LOCK(m); \
53 } \
54 else { \
55 MUTEX_LOCK_DEBUG \
58 #endif