rw_once
include/rw_once.h View source View on GitHubMacros
Section titled “Macros”READ_ONCE
Section titled “READ_ONCE”#define READ_ONCE(x) (*(const volatile typeof(x) *) &(x)) WRITE_ONCE
Section titled “WRITE_ONCE”#define WRITE_ONCE(x, val) \
do { \
*(volatile typeof(x) *) &(x) = (val); \
} while (0)