blob: 933ca6581abace6a4f61bc9f7f720c4f3d526c8e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Arnd Bergmannaafe4db2009-05-13 22:56:33 +00002#ifndef __ASM_GENERIC_SYSCALLS_H
3#define __ASM_GENERIC_SYSCALLS_H
4
5#include <linux/compiler.h>
6#include <linux/linkage.h>
7
8/*
9 * Calling conventions for these system calls can differ, so
10 * it's possible to override them.
11 */
Arnd Bergmannaafe4db2009-05-13 22:56:33 +000012
Arnd Bergmannaafe4db2009-05-13 22:56:33 +000013#ifndef sys_mmap2
14asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
15 unsigned long prot, unsigned long flags,
16 unsigned long fd, unsigned long pgoff);
17#endif
18
19#ifndef sys_mmap
20asmlinkage long sys_mmap(unsigned long addr, unsigned long len,
21 unsigned long prot, unsigned long flags,
22 unsigned long fd, off_t pgoff);
23#endif
24
Arnd Bergmannaafe4db2009-05-13 22:56:33 +000025#ifndef sys_rt_sigreturn
26asmlinkage long sys_rt_sigreturn(struct pt_regs *regs);
27#endif
28
Arnd Bergmannaafe4db2009-05-13 22:56:33 +000029#endif /* __ASM_GENERIC_SYSCALLS_H */