git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
9 lines
217 B
C
9 lines
217 B
C
#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
|