tegrakernel/kernel/kernel-4.9/tools/lib/lockdep/uinclude/linux/compiler.h

11 lines
243 B
C
Raw Normal View History

2022-02-16 09:13:02 -06:00
#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