linux-surface/tools/virtio/linux/compiler.h

10 lines
199 B
C
Raw Normal View History

2017-08-10 13:25:24 +00:00
#ifndef LINUX_COMPILER_H
#define LINUX_COMPILER_H
#define WRITE_ONCE(var, val) \
(*((volatile typeof(val) *)(&(var))) = (val))
#define READ_ONCE(var) (*((volatile typeof(var) *)(&(var))))
#endif