| Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 1 | #ifndef _ENTRY_H | 
|  | 2 | #define _ENTRY_H | 
|  | 3 |  | 
|  | 4 | #include <linux/types.h> | 
|  | 5 | #include <linux/signal.h> | 
|  | 6 | #include <asm/ptrace.h> | 
|  | 7 |  | 
|  | 8 | typedef void pgm_check_handler_t(struct pt_regs *, 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; | 
|  | 12 |  | 
|  | 13 | extern int sysctl_userprocess_debug; | 
|  | 14 |  | 
|  | 15 | void do_single_step(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); | 
|  | 21 |  | 
|  | 22 | void do_extint(struct pt_regs *regs, unsigned short code); | 
|  | 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); | 
|  | 26 |  | 
|  | 27 | struct new_utsname; | 
|  | 28 | struct mmap_arg_struct; | 
|  | 29 | struct fadvise64_64_args; | 
|  | 30 | struct old_sigaction; | 
|  | 31 | struct sel_arg_struct; | 
|  | 32 |  | 
|  | 33 | long sys_pipe(unsigned long __user *fildes); | 
|  | 34 | long sys_mmap2(struct mmap_arg_struct __user  *arg); | 
|  | 35 | long old_mmap(struct mmap_arg_struct __user *arg); | 
|  | 36 | long sys_ipc(uint call, int first, unsigned long second, | 
|  | 37 | unsigned long third, void __user *ptr); | 
|  | 38 | long s390x_newuname(struct new_utsname __user *name); | 
|  | 39 | long s390x_personality(unsigned long personality); | 
|  | 40 | long s390_fadvise64(int fd, u32 offset_high, u32 offset_low, | 
|  | 41 | size_t len, int advice); | 
|  | 42 | long s390_fadvise64_64(struct fadvise64_64_args __user *args); | 
|  | 43 | long s390_fallocate(int fd, int mode, loff_t offset, u32 len_high, u32 len_low); | 
|  | 44 | long sys_fork(void); | 
|  | 45 | long sys_clone(void); | 
|  | 46 | long sys_vfork(void); | 
|  | 47 | void execve_tail(void); | 
|  | 48 | long sys_execve(void); | 
|  | 49 | int sys_sigsuspend(int history0, int history1, old_sigset_t mask); | 
|  | 50 | long sys_sigaction(int sig, const struct old_sigaction __user *act, | 
|  | 51 | struct old_sigaction __user *oact); | 
|  | 52 | long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss); | 
|  | 53 | long sys_sigreturn(void); | 
|  | 54 | long sys_rt_sigreturn(void); | 
|  | 55 | long sys32_sigreturn(void); | 
|  | 56 | long sys32_rt_sigreturn(void); | 
|  | 57 | long old_select(struct sel_arg_struct __user *arg); | 
|  | 58 | long sys_ptrace(long request, long pid, long addr, long data); | 
|  | 59 |  | 
|  | 60 | #endif /* _ENTRY_H */ |