Blame view

kernel/linux-rt-4.4.41/tools/lib/lockdep/uinclude/linux/compiler.h 218 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
  #ifndef _LIBLOCKDEP_LINUX_COMPILER_H_
  #define _LIBLOCKDEP_LINUX_COMPILER_H_
  
  #define __used		__attribute__((__unused__))
  #define unlikely
  #define WRITE_ONCE(x, val) x=(val)
  #define RCU_INIT_POINTER(p, v) p=(v)
  
  #endif