Changeset 58775d30 in mainline for kernel/generic/include/synch/spinlock.h
- Timestamp:
- 2015-03-16T16:07:21Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2003739
- Parents:
- 6069061 (diff), 795e2bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/spinlock.h
r6069061 r58775d30 45 45 #ifdef CONFIG_SMP 46 46 47 typedef struct {47 typedef struct spinlock { 48 48 atomic_t val; 49 49 … … 163 163 /* On UP systems, spinlocks are effectively left out. */ 164 164 165 /* Allow the use of spinlock_t as an incomplete type. */ 166 typedef struct spinlock spinlock_t; 167 165 168 #define SPINLOCK_DECLARE(name) 166 169 #define SPINLOCK_EXTERN(name) … … 177 180 178 181 #define spinlock_lock(lock) preemption_disable() 179 #define spinlock_trylock(lock) ( preemption_disable(), 1)182 #define spinlock_trylock(lock) ({ preemption_disable(); 1; }) 180 183 #define spinlock_unlock(lock) preemption_enable() 181 184 #define spinlock_locked(lock) 1
Note:
See TracChangeset
for help on using the changeset viewer.