You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _LINUX_LOCAL_LOCK
|
|
#define _LINUX_LOCAL_LOCK
|
|
typedef struct { } local_lock_t;
|
|
|
|
static inline void local_lock(local_lock_t *lock) { }
|
|
static inline void local_unlock(local_lock_t *lock) { }
|
|
#define INIT_LOCAL_LOCK(x) { }
|
|
#endif
|