https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 90951a848b1a614f5b282df7a436238a551c7875 authored by Jason Self on 29 June 2015, 19:08:49 UTC
Linux-libre 3.10.82-gnu
Tip revision: 90951a8
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