cregit-Linux how code gets into the kernel

Release 4.10 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

PersonTokensPropCommitsCommitProp
michael s. tsirkinmichael s. tsirkin2496.00%150.00%
mark rutlandmark rutland14.00%150.00%
Total25100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.