https://jxself.org/git/linux-libre.git
Raw File
Tip revision: acd7755c2b770ba8b7a124f4b4fe570047b8267a authored by Jason Self on 27 January 2015, 15:52:56 UTC
Linux-libre 3.10.66-gnu
Tip revision: acd7755
linkage.h
#ifndef __ASM_LINKAGE_H
#define __ASM_LINKAGE_H

#define cond_syscall(x)  asm(".weak\t" #x "\n" #x " = sys_ni_syscall")
#define SYSCALL_ALIAS(alias, name)					\
	asm ( #alias " = " #name "\n\t.globl " #alias)

#endif
back to top