check the return of pth_mutex_acquire and pth_mutex_release in lock.h
[pwmd.git] / src / lock.h
blob3d246073c38493ee03994e04b0bc161970f5de76
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 <pth.h>
23 #include <assert.h>
24 #include <errno.h>
25 #include "cache.h"
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 \
42 if (pth_mutex_acquire(m, FALSE, NULL) == FALSE) { \
43 log_write("%s(%i): %s: LOCK", __FILE__, __LINE__, strerror(errno)); \
44 assert(0); \
47 #define MUTEX_UNLOCK(m) \
48 MUTEX_UNLOCK_DEBUG \
49 if (pth_mutex_release(m) == FALSE) { \
50 log_write("%s(%i): %s: UNLOCK", __FILE__, __LINE__, strerror(errno)); \
51 assert(0); \
54 #define MUTEX_TRYLOCK(ctx, m) \
55 if (pth_mutex_acquire(m, TRUE, NULL) == FALSE) { \
56 if (errno == EBUSY) { \
57 if (ctx) \
58 send_status(ctx, STATUS_LOCKED, NULL); \
59 log_write(N_("%s(%i): %s: mutex is LOCKED"), __FILE__, __LINE__, \
60 __FUNCTION__); \
61 MUTEX_LOCK(m); \
62 } \
63 else { \
64 log_write("%s(%i): %s: LOCK", __FILE__, __LINE__, __FUNCTION__); \
65 assert(0); \
66 } \
67 } \
68 else { \
69 MUTEX_LOCK_DEBUG \
72 #endif