2 * syscalls.h - Linux syscall interfaces (arch-specific)
4 * Copyright (c) 2008 Jaswinder Singh Rajput
6 * This file is released under the GPLv2.
7 * See the file COPYING for more details.
10 #ifndef _ASM_X86_SYSCALLS_H
11 #define _ASM_X86_SYSCALLS_H
13 #include <linux/compiler.h>
14 #include <linux/linkage.h>
15 #include <linux/signal.h>
16 #include <linux/types.h>
18 /* Common in X86_32 and X86_64 */
20 asmlinkage
long sys_ioperm(unsigned long, unsigned long, int);
21 asmlinkage
long sys_iopl(unsigned int);
24 asmlinkage
int sys_modify_ldt(int, void __user
*, unsigned long);
27 asmlinkage
long sys_rt_sigreturn(void);
30 asmlinkage
long sys_set_thread_area(struct user_desc __user
*);
31 asmlinkage
long sys_get_thread_area(struct user_desc __user
*);
37 asmlinkage
unsigned long sys_sigreturn(void);
39 /* kernel/vm86_32.c */
41 asmlinkage
long sys_vm86old(struct vm86_struct __user
*);
42 asmlinkage
long sys_vm86(unsigned long, unsigned long);
44 #else /* CONFIG_X86_32 */
47 /* kernel/process_64.c */
48 asmlinkage
long sys_arch_prctl(int, unsigned long);
50 /* kernel/sys_x86_64.c */
51 asmlinkage
long sys_mmap(unsigned long, unsigned long, unsigned long,
52 unsigned long, unsigned long, unsigned long);
54 #endif /* CONFIG_X86_32 */
55 #endif /* _ASM_X86_SYSCALLS_H */