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