📄 syscalls.h
字号:
#ifndef _BITS_SYSCALLS_H#define _BITS_SYSCALLS_H#ifndef _SYSCALL_H# error "Never use <bits/syscalls.h> directly; include <sys/syscall.h> instead."#endif/* This includes the `__NR_<name>' syscall numbers taken from the Linux kernel * header files. It also defines the traditional `SYS_<name>' macros for older * programs. */#include <bits/sysnum.h>#define __STRINGIFY(s) __STRINGIFY2 (s)#define __STRINGIFY2(s) #s#undef JUMPTARGET#ifdef __PIC__#define __MAKE_SYSCALL __STRINGIFY(__uClibc_syscall@plt)#else#define __MAKE_SYSCALL __STRINGIFY(__uClibc_syscall)#endif#define unified_syscall_body(name) \ __asm__ ( \ ".section \".text\"\n\t" \ ".align 2\n\t" \ ".globl " __STRINGIFY(name) "\n\t" \ ".type " __STRINGIFY(name) ",@function\n\t" \ #name":\n\tli 0," __STRINGIFY(__NR_##name) "\n\t" \ "b " __MAKE_SYSCALL "\n\t" \ ".Lfe1" __STRINGIFY(name) ":\n\t" \ ".size\t" __STRINGIFY(name) ",.Lfe1" __STRINGIFY(name) "-" __STRINGIFY(name) "\n" \ )#undef _syscall0#define _syscall0(type,name) \type name(void); \unified_syscall_body(name)#undef _syscall1#define _syscall1(type,name,type1,arg1) \type name(type1 arg1); \unified_syscall_body(name)#undef _syscall2#define _syscall2(type,name,type1,arg1,type2,arg2) \type name(type1 arg1, type2 arg2); \unified_syscall_body(name)#undef _syscall3#define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \type name(type1 arg1, type2 arg2, type3 arg3); \unified_syscall_body(name)#undef _syscall4#define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4); \unified_syscall_body(name)#undef _syscall5#define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5); \unified_syscall_body(name)#undef _syscall6#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5,type6,arg6) \type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5, type6 arg6); \unified_syscall_body(name)#endif /* _BITS_SYSCALLS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -