syscalls_64.h 402 B

123456789101112131415161718
  1. #ifndef __ASM_SH_SYSCALLS_64_H
  2. #define __ASM_SH_SYSCALLS_64_H
  3. #ifdef __KERNEL__
  4. #include <linux/compiler.h>
  5. #include <linux/linkage.h>
  6. #include <linux/types.h>
  7. struct pt_regs;
  8. /* Misc syscall related bits */
  9. asmlinkage long long do_syscall_trace_enter(struct pt_regs *regs);
  10. asmlinkage void do_syscall_trace_leave(struct pt_regs *regs);
  11. #endif /* __KERNEL__ */
  12. #endif /* __ASM_SH_SYSCALLS_64_H */