Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
5f82e71a001d14824a7728ad9e49f6aea420f161
/
.
/
tools
/
virtio
/
linux
/
compiler.h
blob: c9ccfd42ec137d593913bffcca846e197d1cb9f4 [
file
] [
log
] [
blame
]
#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