Updated the copyright year.
[pwmd.git] / src / mutex.h
blobeb9a7df083f455019a2413fdb2eb9ef0d12aa39d
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006-2011 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 MUTEX_DEBUG
28 #define MUTEX_LOCK_DEBUG(m) \
29 log_write("%s(%i): %s(): LOCK %p", __FILE__, __LINE__, __FUNCTION__, m);
30 #define MUTEX_UNLOCK_DEBUG(m) \
31 log_write("%s(%i): %s(): UNLOCK %p", __FILE__, __LINE__, __FUNCTION__, m);
32 #else
33 #define MUTEX_LOCK_DEBUG(m)
34 #define MUTEX_UNLOCK_DEBUG(m)
35 #endif
37 #define CACHE_LOCK(ctx) MUTEX_LOCK(&cache_mutex)
38 #define CACHE_UNLOCK MUTEX_UNLOCK(&cache_mutex)
40 #define MUTEX_LOCK(m) \
41 MUTEX_LOCK_DEBUG(m) \
42 if (!pth_mutex_acquire(m, FALSE, NULL)) { \
43 log_write("%s(%i): %s: LOCK", __FILE__, __LINE__, strerror(errno)); \
44 assert(0); \
45 } \
47 #define MUTEX_UNLOCK(m) \
48 MUTEX_UNLOCK_DEBUG(m) \
49 if (!pth_mutex_release(m) && errno != EDEADLK) { \
50 log_write("%s(%i): %s: UNLOCK", __FILE__, __LINE__, strerror(errno)); \
51 assert(0); \
54 #define MUTEX_LOCK_EV(client, m, rc) { \
55 pth_event_t ev = pth_event(PTH_EVENT_FD|PTH_UNTIL_FD_READABLE, \
56 client->thd->fd); \
57 MUTEX_LOCK_DEBUG(m) \
58 if (!pth_mutex_acquire(m, FALSE, ev)) { \
59 rc = gpg_error_from_errno(errno); \
60 log_write("%s(%i): LOCK: %s", __FILE__, __LINE__, pwmd_strerror(rc));\
61 } \
62 pth_event_free(ev, PTH_FREE_ALL); \
65 #define MUTEX_TRYLOCK(client, m, rc) \
66 if (!pth_mutex_acquire(m, TRUE, NULL)) { \
67 if (errno == EBUSY) { \
68 if (client && client->ctx) {\
69 rc = send_status(client->ctx, STATUS_LOCKED, NULL); \
70 if (!rc) { \
71 MUTEX_LOCK_EV(client, m, rc); \
72 } \
73 } \
74 } \
75 else { \
76 log_write("%s(%i): %s: LOCK errno=%i", __FILE__, __LINE__, __FUNCTION__, errno); \
77 assert(0); \
78 } \
79 } \
80 else { \
81 MUTEX_LOCK_DEBUG(m) \
84 #endif