brintos

brintos / linux-shallow public Read only

0
0
Text · 234 B · b3cf8b2 Raw
9 lines · c
1#ifndef _LINUX_LOCAL_LOCK2#define _LINUX_LOCAL_LOCK3typedef struct { } local_lock_t;4 5static inline void local_lock(local_lock_t *lock) { }6static inline void local_unlock(local_lock_t *lock) { }7#define INIT_LOCAL_LOCK(x) { }8#endif9