1 /* SPDX-License-Identifier: GPL-2.0 */
3 * IA-64 Linux syscall numbers and inline-functions.
5 * Copyright (C) 1998-2005 Hewlett-Packard Co
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 */
16 * The following defines stop scripts/checksyscalls.sh from complaining about
17 * unimplemented system calls. Glibc provides for each of these by using
18 * more modern equivalent system calls.
20 #define __IGNORE_fork /* clone() */
21 #define __IGNORE_time /* gettimeofday() */
22 #define __IGNORE_alarm /* setitimer(ITIMER_REAL, ... */
23 #define __IGNORE_pause /* rt_sigprocmask(), rt_sigsuspend() */
24 #define __IGNORE_utime /* utimes() */
25 #define __IGNORE_getpgrp /* getpgid() */
26 #define __IGNORE_vfork /* clone() */
27 #define __IGNORE_umount2 /* umount() */
29 #define __ARCH_WANT_NEW_STAT
30 #define __ARCH_WANT_SYS_UTIME
32 #if !defined(__ASSEMBLY__) && !defined(ASSEMBLER)
34 #include <linux/types.h>
35 #include <linux/linkage.h>
36 #include <linux/compiler.h>
38 extern long __ia64_syscall (long a0, long a1, long a2, long a3, long a4, long nr);
40 asmlinkage unsigned long sys_mmap(
41 unsigned long addr, unsigned long len,
44 asmlinkage unsigned long sys_mmap2(
45 unsigned long addr, unsigned long len,
49 asmlinkage long sys_ia64_pipe(void);
51 #endif /* !__ASSEMBLY__ */
52 #endif /* _ASM_IA64_UNISTD_H */