.. | .. |
---|
8 | 8 | #define spinlock_t pthread_mutex_t |
---|
9 | 9 | #define DEFINE_SPINLOCK(x) pthread_mutex_t x = PTHREAD_MUTEX_INITIALIZER |
---|
10 | 10 | #define __SPIN_LOCK_UNLOCKED(x) (pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER |
---|
11 | | -#define spin_lock_init(x) pthread_mutex_init(x, NULL) |
---|
| 11 | +#define spin_lock_init(x) pthread_mutex_init(x, NULL) |
---|
12 | 12 | |
---|
| 13 | +#define spin_lock(x) pthread_mutex_lock(x) |
---|
| 14 | +#define spin_unlock(x) pthread_mutex_unlock(x) |
---|
| 15 | +#define spin_lock_bh(x) pthread_mutex_lock(x) |
---|
| 16 | +#define spin_unlock_bh(x) pthread_mutex_unlock(x) |
---|
| 17 | +#define spin_lock_irq(x) pthread_mutex_lock(x) |
---|
| 18 | +#define spin_unlock_irq(x) pthread_mutex_unlock(x) |
---|
13 | 19 | #define spin_lock_irqsave(x, f) (void)f, pthread_mutex_lock(x) |
---|
14 | 20 | #define spin_unlock_irqrestore(x, f) (void)f, pthread_mutex_unlock(x) |
---|
15 | 21 | |
---|
.. | .. |
---|
31 | 37 | return true; |
---|
32 | 38 | } |
---|
33 | 39 | |
---|
| 40 | +#include <linux/lockdep.h> |
---|
| 41 | + |
---|
34 | 42 | #endif |
---|