Linux Audio

Check our new training course

Loading...
v4.6
 
 1/*
 2 * syscalls.h - Linux syscall interfaces (arch-specific)
 3 *
 4 * Copyright (c) 2008 Jaswinder Singh Rajput
 5 *
 6 * This file is released under the GPLv2.
 7 * See the file COPYING for more details.
 8 */
 9
10#ifndef _ASM_X86_SYSCALLS_H
11#define _ASM_X86_SYSCALLS_H
12
13#include <linux/compiler.h>
14#include <linux/linkage.h>
15#include <linux/signal.h>
16#include <linux/types.h>
17
18/* Common in X86_32 and X86_64 */
19/* kernel/ioport.c */
20asmlinkage long sys_ioperm(unsigned long, unsigned long, int);
21asmlinkage long sys_iopl(unsigned int);
22
23/* kernel/ldt.c */
24asmlinkage int sys_modify_ldt(int, void __user *, unsigned long);
25
26/* kernel/signal.c */
27asmlinkage long sys_rt_sigreturn(void);
28
29/* kernel/tls.c */
30asmlinkage long sys_set_thread_area(struct user_desc __user *);
31asmlinkage long sys_get_thread_area(struct user_desc __user *);
32
33/* X86_32 only */
34#ifdef CONFIG_X86_32
35
36/* kernel/signal.c */
37asmlinkage unsigned long sys_sigreturn(void);
38
39/* kernel/vm86_32.c */
40struct vm86_struct;
41asmlinkage long sys_vm86old(struct vm86_struct __user *);
42asmlinkage long sys_vm86(unsigned long, unsigned long);
43
44#else /* CONFIG_X86_32 */
45
46/* X86_64 only */
47/* kernel/process_64.c */
48asmlinkage long sys_arch_prctl(int, unsigned long);
49
50/* kernel/sys_x86_64.c */
51asmlinkage long sys_mmap(unsigned long, unsigned long, unsigned long,
52			 unsigned long, unsigned long, unsigned long);
53
54#endif /* CONFIG_X86_32 */
55#endif /* _ASM_X86_SYSCALLS_H */
v6.8
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2/*
 3 * syscalls.h - Linux syscall interfaces (arch-specific)
 4 *
 5 * Copyright (c) 2008 Jaswinder Singh Rajput
 
 
 
 6 */
 7
 8#ifndef _ASM_X86_SYSCALLS_H
 9#define _ASM_X86_SYSCALLS_H
10
 
 
 
 
 
11/* Common in X86_32 and X86_64 */
12/* kernel/ioport.c */
13long ksys_ioperm(unsigned long from, unsigned long num, int turn_on);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15#endif /* _ASM_X86_SYSCALLS_H */