Searched defs:spinlock_t (Results 1 - 4 of 4) sorted by relevance

/external/kernel-headers/original/linux/
H A Dspinlock_api_smp.h22 void __lockfunc _spin_lock(spinlock_t *lock) __acquires(spinlock_t); variable
23 void __lockfunc _spin_lock_nested(spinlock_t *lock, int subclass)
24 __acquires(spinlock_t); variable
27 void __lockfunc _spin_lock_bh(spinlock_t *lock) __acquires(spinlock_t); variable
30 void __lockfunc _spin_lock_irq(spinlock_t *lock) __acquires(spinlock_t); variable
33 unsigned long __lockfunc _spin_lock_irqsave(spinlock_t *lock)
34 __acquires(spinlock_t); variable
43 void __lockfunc _spin_unlock(spinlock_t *lock) __releases(spinlock_t); variable
46 void __lockfunc _spin_unlock_bh(spinlock_t *lock) __releases(spinlock_t); variable
49 void __lockfunc _spin_unlock_irq(spinlock_t *lock) __releases(spinlock_t); variable
53 __releases(spinlock_t); variable
[all...]
H A Dspinlock_types.h32 } spinlock_t; typedef in typeref:struct:__anon7723
68 (spinlock_t) { .raw_lock = __RAW_SPIN_LOCK_UNLOCKED, \
81 (spinlock_t) { .raw_lock = __RAW_SPIN_LOCK_UNLOCKED, \
91 #define DEFINE_SPINLOCK(x) spinlock_t x = __SPIN_LOCK_UNLOCKED(x)
/external/qemu/
H A Dqemu-lock.h27 #define spinlock_t pthread_mutex_t macro
38 typedef int spinlock_t; typedef
41 static inline void spin_lock(spinlock_t *lock)
45 static inline void spin_unlock(spinlock_t *lock)
/external/clang/test/CodeGen/
H A D2003-11-01-C99-CompoundLiteral.c3 typedef struct { int foo; } spinlock_t; typedef in typeref:struct:__anon4122
4 typedef struct wait_queue_head_t { spinlock_t lock; } wait_queue_head_t;
6 struct wait_queue_head_t work = { lock: (spinlock_t) { 0 }, };

Completed in 100 milliseconds