summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/include/linux/mutex-debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'ANDROID_3.4.5/include/linux/mutex-debug.h')
-rw-r--r--ANDROID_3.4.5/include/linux/mutex-debug.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/ANDROID_3.4.5/include/linux/mutex-debug.h b/ANDROID_3.4.5/include/linux/mutex-debug.h
deleted file mode 100644
index 731d77d6..00000000
--- a/ANDROID_3.4.5/include/linux/mutex-debug.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef __LINUX_MUTEX_DEBUG_H
-#define __LINUX_MUTEX_DEBUG_H
-
-#include <linux/linkage.h>
-#include <linux/lockdep.h>
-
-/*
- * Mutexes - debugging helpers:
- */
-
-#define __DEBUG_MUTEX_INITIALIZER(lockname) \
- , .magic = &lockname
-
-#define mutex_init(mutex) \
-do { \
- static struct lock_class_key __key; \
- \
- __mutex_init((mutex), #mutex, &__key); \
-} while (0)
-
-extern void mutex_destroy(struct mutex *lock);
-
-#endif