cregit-Linux how code gets into the kernel

Release 4.7 include/linux/kbuild.h

Directory: include/linux
#ifndef __LINUX_KBUILD_H

#define __LINUX_KBUILD_H


#define DEFINE(sym, val) \
        asm volatile("\n->" #sym " %0 " #val : : "i" (val))


#define BLANK() asm volatile("\n->" : : )


#define OFFSET(sym, str, mem) \
	DEFINE(sym, offsetof(struct str, mem))


#define COMMENT(x) \
	asm volatile("\n->#" x)

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
christoph lameterchristoph lameter43100.00%1100.00%
Total43100.00%1100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}