entry.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef _ENTRY_H
  2. #define _ENTRY_H
  3. #include <linux/types.h>
  4. #include <linux/signal.h>
  5. #include <asm/ptrace.h>
  6. void do_protection_exception(struct pt_regs *, long, unsigned long);
  7. void do_dat_exception(struct pt_regs *, long, unsigned long);
  8. void do_asce_exception(struct pt_regs *, long, unsigned long);
  9. extern int sysctl_userprocess_debug;
  10. void do_per_trap(struct pt_regs *regs);
  11. void syscall_trace(struct pt_regs *regs, int entryexit);
  12. void kernel_stack_overflow(struct pt_regs * regs);
  13. void do_signal(struct pt_regs *regs);
  14. int handle_signal32(unsigned long sig, struct k_sigaction *ka,
  15. siginfo_t *info, sigset_t *oldset, struct pt_regs *regs);
  16. void do_extint(struct pt_regs *regs, unsigned int, unsigned int, unsigned long);
  17. int __cpuinit start_secondary(void *cpuvoid);
  18. void __init startup_init(void);
  19. void die(const char * str, struct pt_regs * regs, long err);
  20. struct s390_mmap_arg_struct;
  21. struct fadvise64_64_args;
  22. struct old_sigaction;
  23. long sys_mmap2(struct s390_mmap_arg_struct __user *arg);
  24. long sys_s390_ipc(uint call, int first, unsigned long second,
  25. unsigned long third, void __user *ptr);
  26. long sys_s390_personality(unsigned int personality);
  27. long sys_s390_fadvise64(int fd, u32 offset_high, u32 offset_low,
  28. size_t len, int advice);
  29. long sys_s390_fadvise64_64(struct fadvise64_64_args __user *args);
  30. long sys_s390_fallocate(int fd, int mode, loff_t offset, u32 len_high,
  31. u32 len_low);
  32. long sys_fork(void);
  33. long sys_clone(unsigned long newsp, unsigned long clone_flags,
  34. int __user *parent_tidptr, int __user *child_tidptr);
  35. long sys_vfork(void);
  36. void execve_tail(void);
  37. long sys_execve(const char __user *name, const char __user *const __user *argv,
  38. const char __user *const __user *envp);
  39. long sys_sigsuspend(int history0, int history1, old_sigset_t mask);
  40. long sys_sigaction(int sig, const struct old_sigaction __user *act,
  41. struct old_sigaction __user *oact);
  42. long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss);
  43. long sys_sigreturn(void);
  44. long sys_rt_sigreturn(void);
  45. long sys32_sigreturn(void);
  46. long sys32_rt_sigreturn(void);
  47. #endif /* _ENTRY_H */