git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
11 lines
243 B
C
11 lines
243 B
C
#ifndef _LIBLOCKDEP_LINUX_COMPILER_H_
|
|
#define _LIBLOCKDEP_LINUX_COMPILER_H_
|
|
|
|
#define __used __attribute__((__unused__))
|
|
#define unlikely
|
|
#define READ_ONCE(x) (x)
|
|
#define WRITE_ONCE(x, val) x=(val)
|
|
#define RCU_INIT_POINTER(p, v) p=(v)
|
|
|
|
#endif
|