1
2
3
4
5
6
7#ifndef _ASM_IA64_UNISTD_H
8#define _ASM_IA64_UNISTD_H
9
10#include <uapi/asm/unistd.h>
11
12
13
14#define NR_syscalls 315
15
16
17
18
19
20
21#define __IGNORE_fork
22#define __IGNORE_time
23#define __IGNORE_alarm
24#define __IGNORE_pause
25#define __IGNORE_utime
26#define __IGNORE_getpgrp
27#define __IGNORE_vfork
28#define __IGNORE_umount2
29
30#if !defined(__ASSEMBLY__) && !defined(ASSEMBLER)
31
32#include <linux/types.h>
33#include <linux/linkage.h>
34#include <linux/compiler.h>
35
36extern long __ia64_syscall (long a0, long a1, long a2, long a3, long a4, long nr);
37
38asmlinkage unsigned long sys_mmap(
39 unsigned long addr, unsigned long len,
40 int prot, int flags,
41 int fd, long off);
42asmlinkage unsigned long sys_mmap2(
43 unsigned long addr, unsigned long len,
44 int prot, int flags,
45 int fd, long pgoff);
46struct pt_regs;
47asmlinkage long sys_ia64_pipe(void);
48
49#endif
50#endif
51