]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/kernel-video.git/blob - include/linux/mutex-debug.h
Merge branch 'p-ti-linux-3.8.y' into p-ti-android-3.8.y
[android-sdk/kernel-video.git] / include / linux / mutex-debug.h
1 #ifndef __LINUX_MUTEX_DEBUG_H
2 #define __LINUX_MUTEX_DEBUG_H
4 #include <linux/linkage.h>
5 #include <linux/lockdep.h>
7 /*
8  * Mutexes - debugging helpers:
9  */
11 #define __DEBUG_MUTEX_INITIALIZER(lockname)                             \
12         , .magic = &lockname
14 #define mutex_init(mutex)                                               \
15 do {                                                                    \
16         static struct lock_class_key __key;                             \
17                                                                         \
18         __mutex_init((mutex), #mutex, &__key);                          \
19 } while (0)
21 extern void mutex_destroy(struct mutex *lock);
23 #endif