1 /* SPDX-License-Identifier: GPL-2.0 */
3 * IA-64 Linux syscall numbers and inline-functions.
5 * Copyright (C) 1998-2005 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
8 #ifndef _ASM_IA64_UNISTD_H
9 #define _ASM_IA64_UNISTD_H
11 #include <uapi/asm/unistd.h>
13 #define NR_syscalls __NR_syscalls /* length of syscall table */
15 #define __ARCH_WANT_NEW_STAT
16 #define __ARCH_WANT_SYS_UTIME
18 #if !defined(__ASSEMBLY__) && !defined(ASSEMBLER)
20 #include <linux/types.h>
21 #include <linux/linkage.h>
22 #include <linux/compiler.h>
24 extern long __ia64_syscall (long a0
, long a1
, long a2
, long a3
, long a4
, long nr
);
26 asmlinkage
unsigned long sys_mmap(
27 unsigned long addr
, unsigned long len
,
30 asmlinkage
unsigned long sys_mmap2(
31 unsigned long addr
, unsigned long len
,
35 asmlinkage
long sys_ia64_pipe(void);
37 #endif /* !__ASSEMBLY__ */
38 #endif /* _ASM_IA64_UNISTD_H */