123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #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 */
|