aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/sys_ia32.h
blob: 906794aa034e732ec57d32a8be0ef77085a553a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 * sys_ia32.h - Linux ia32 syscall interfaces
 *
 * Copyright (c) 2008 Jaswinder Singh Rajput
 *
 * This file is released under the GPLv2.
 * See the file COPYING for more details.
 */

#ifndef _ASM_X86_SYS_IA32_H
#define _ASM_X86_SYS_IA32_H

#ifdef CONFIG_COMPAT

#include <linux/compiler.h>
#include <linux/linkage.h>
#include <linux/types.h>
#include <linux/signal.h>
#include <asm/compat.h>
#include <asm/ia32.h>

/* ia32/sys_ia32.c */
asmlinkage long compat_sys_x86_truncate64(const char __user *, unsigned long,
					  unsigned long);
asmlinkage long compat_sys_x86_ftruncate64(unsigned int, unsigned long,
					   unsigned long);

asmlinkage long compat_sys_x86_stat64(const char __user *,
				      struct stat64 __user *);
asmlinkage long compat_sys_x86_lstat64(const char __user *,
				       struct stat64 __user *);
asmlinkage long compat_sys_x86_fstat64(unsigned int, struct stat64 __user *);
asmlinkage long compat_sys_x86_fstatat(unsigned int, const char __user *,
			      struct stat64 __user *, int);
struct mmap_arg_struct32;
asmlinkage long compat_sys_x86_mmap(struct mmap_arg_struct32 __user *);

asmlinkage long compat_sys_x86_waitpid(compat_pid_t, unsigned int __user *,
				       int);

asmlinkage long compat_sys_x86_pread(unsigned int, char __user *, u32, u32,
				     u32);
asmlinkage long compat_sys_x86_pwrite(unsigned int, const char __user *, u32,
				      u32, u32);

asmlinkage long compat_sys_x86_fadvise64_64(int, __u32, __u32, __u32, __u32,
					    int);

asmlinkage ssize_t compat_sys_x86_readahead(int, unsigned int, unsigned int,
					    size_t);
asmlinkage long compat_sys_x86_sync_file_range(int, unsigned int, unsigned int,
					       unsigned int, unsigned int,
					       int);
asmlinkage long compat_sys_x86_fadvise64(int, unsigned int, unsigned int,
					 size_t, int);
asmlinkage long compat_sys_x86_fallocate(int, int, unsigned int, unsigned int,
					 unsigned int, unsigned int);
asmlinkage long compat_sys_x86_clone(unsigned long, unsigned long, int __user *,
				     unsigned long, int __user *);

/* ia32/ia32_signal.c */
asmlinkage long sys32_sigreturn(void);
asmlinkage long sys32_rt_sigreturn(void);

#endif /* CONFIG_COMPAT */

#endif /* _ASM_X86_SYS_IA32_H */