syscall.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. #ifndef _SYS_SYSCALL_H
  2. #define _SYS_SYSCALL_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. long __syscall_ret(long);
  7. long __syscall(long, ...);
  8. long syscall(long, ...);
  9. #include <bits/syscall.h>
  10. #define __syscall1(n,a) __syscall1(n,(long)(a))
  11. #define __syscall2(n,a,b) __syscall2(n,(long)(a),(long)(b))
  12. #define __syscall3(n,a,b,c) __syscall3(n,(long)(a),(long)(b),(long)(c))
  13. #define __syscall4(n,a,b,c,d) __syscall4(n,(long)(a),(long)(b),(long)(c),(long)(d))
  14. #define __syscall5(n,a,b,c,d,e) __syscall5(n,(long)(a),(long)(b),(long)(c),(long)(d),(long)(e))
  15. #define __syscall6(n,a,b,c,d,e,f) __syscall6(n,(long)(a),(long)(b),(long)(c),(long)(d),(long)(e),(long)(f))
  16. #define __SYSCALL_NARGS_X(a,b,c,d,e,f,g,n,...) n
  17. #define __SYSCALL_NARGS(...) __SYSCALL_NARGS_X(__VA_ARGS__,6,5,4,3,2,1,0)
  18. #define __SYSCALL_CONCAT_X(a,b) a##b
  19. #define __SYSCALL_CONCAT(a,b) __SYSCALL_CONCAT_X(a,b)
  20. #define __SYSCALL_DISP(b,...) __SYSCALL_CONCAT(b,__SYSCALL_NARGS(__VA_ARGS__))(__VA_ARGS__)
  21. #define __syscall(...) __SYSCALL_DISP(__syscall,__VA_ARGS__)
  22. #define syscall(...) __syscall_ret(__syscall(__VA_ARGS__))
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif