Release 4.11 tools/virtio/linux/compiler.h
#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
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael S. Tsirkin | 24 | 96.00% | 1 | 50.00% |
Mark Rutland | 1 | 4.00% | 1 | 50.00% |
Total | 25 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.