1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
/*
* debug_mutex.h: debugging wrappers for pthread_mutex_ functions
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: debug_mutex.h,v 1.1 2006-12-19 17:21:50 phintuka Exp $
*
*/
#ifndef DEBUG_MUTEX_H
#define DEBUG_MUTEX_H
#ifndef _PTHREAD_H
# error pthread.h must be included before debug_mutex.h
#endif
static struct {
pthread_mutex_t *lock;
int line;
} dbgdata[64] = {{NULL,0}};
static void dbg_setdata(pthread_mutex_t *mutex, int line)
{
int i;
for(i=0; i<32; i++)
if(dbgdata[i].lock == mutex) {
dbgdata[i].line = line;
return;
}
else if(!dbgdata[i].lock) {
dbgdata[i].lock = mutex;
dbgdata[i].line = line;
return;
}
LOGMSG("********** dbg_setdata: table full !");
}
static int dbg_getdata(pthread_mutex_t *mutex, int line)
{
int i;
for(i=0; i<32; i++)
if(dbgdata[i].lock == mutex)
return dbgdata[i].line;
LOGMSG("********** dbg_getdata: NO ENTRY ! (%d)", line);
return -1;
}
static int dbg_init(pthread_mutex_t *mutex, pthread_mutexattr_t *pattr, int line)
{
int r;
if(!pattr) {
pthread_mutexattr_t attr;
pthread_mutexattr_init(&attr);
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
r = pthread_mutex_init(mutex, &attr);
} else {
LOGMSG("********** dbg_init: mutex attribute already given !");
r = pthread_mutex_init(mutex, pattr);
}
if(r)
LOGERR("********** dbg_init: pthread_mutex_init FAILED at %d", line);
dbg_setdata(mutex, line);
return r;
}
static int dbg_free(pthread_mutex_t *mutex, int line)
{
int r;
r = pthread_mutex_destroy(mutex);
if(r)
LOGERR("********** dbg_free: pthread_mutex_destroy FAILED at %d ; last lock at %d",
line, dbg_getdata(mutex, line));
return r;
}
static int dbg_lock(pthread_mutex_t *mutex, int line)
{
int r;
/*struct timespec abs_timeout;*/
/* try lock first to reduce logging */
r = pthread_mutex_trylock(mutex);
if(!r) {
dbg_setdata(mutex,line);
return r;
}
/* try failed - we're going to wait, so log at wait start and end to detect deadlocks */
LOGMSG("********** dbg_lock: pthread_mutex_trylock failed at %d (locked at %d)",
line, dbg_getdata(mutex, line));
/* int pthread_mutex_timedlock(pthread_mutex_t *restrict mutex,
const struct timespec *restrict abs_timeout); */
r = pthread_mutex_lock(mutex);
if(r)
LOGERR("********** dbg_lock: pthread_mutex_lock FAILED at %d", line);
dbg_setdata(mutex, line);
LOGMSG("********** dbg_lock: pthread_mutex_lock done at %d", line);
return r;
}
static int dbg_unlock(pthread_mutex_t *mutex, int line)
{
int r;
r = pthread_mutex_unlock(mutex);
if(r)
LOGERR("********** dbg_unlock: pthread_mutex_unlock FAILED at %d (last locket at %d)",
line, dbg_getdata(mutex, line));
return r;
}
/* override pthread_ functions with own ones */
#define pthread_mutex_init(l,a) dbg_init(l, a, __LINE__)
#define pthread_mutex_lock(l) dbg_lock(l, __LINE__)
#define pthread_mutex_unlock(l) dbg_unlock(l, __LINE__)
#define pthread_mutex_destroy(l) dbg_free(l, __LINE__)
#else
# error debug_mutex.h included twice
#endif /* DEBUG_MUTEX_H */
|