2006-01-09 18:59:20 -05:00
|
|
|
#ifndef __LINUX_MUTEX_DEBUG_H
|
|
|
|
#define __LINUX_MUTEX_DEBUG_H
|
|
|
|
|
2006-01-10 00:38:23 -05:00
|
|
|
#include <linux/linkage.h>
|
2006-07-03 03:24:55 -04:00
|
|
|
#include <linux/lockdep.h>
|
2006-01-10 00:38:23 -05:00
|
|
|
|
2006-01-09 18:59:20 -05:00
|
|
|
/*
|
|
|
|
* Mutexes - debugging helpers:
|
|
|
|
*/
|
|
|
|
|
2006-07-03 03:24:33 -04:00
|
|
|
#define __DEBUG_MUTEX_INITIALIZER(lockname) \
|
|
|
|
, .magic = &lockname
|
2006-01-09 18:59:20 -05:00
|
|
|
|
2006-07-03 03:24:55 -04:00
|
|
|
#define mutex_init(mutex) \
|
|
|
|
do { \
|
|
|
|
static struct lock_class_key __key; \
|
|
|
|
\
|
|
|
|
__mutex_init((mutex), #mutex, &__key); \
|
|
|
|
} while (0)
|
2006-01-09 18:59:20 -05:00
|
|
|
|
|
|
|
extern void FASTCALL(mutex_destroy(struct mutex *lock));
|
|
|
|
|
|
|
|
#endif
|