Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 25cb62b76430a91cc6195f902e61c2cb84ade622 authored by Linus Torvalds on 11 October 2015, 18:09:45 UTC
Linux 4.3-rc5
Tip revision: 25cb62b
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