Blame view

arch/mips/include/asm/unistd.h 1.76 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
  /*
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
   *
   * Copyright (C) 1995, 96, 97, 98, 99, 2000 by Ralf Baechle
   * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
   *
   * Changed system calls macros _syscall5 - _syscall7 to push args 5 to 7 onto
   * the stack. Robin Farine for ACN S.A, Copyright (C) 1996 by ACN S.A
   */
  #ifndef _ASM_UNISTD_H
  #define _ASM_UNISTD_H
61730c538   David Howells   UAPI: (Scripted) ...
14
  #include <uapi/asm/unistd.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15

561425368   David Woodhouse   Remove unneeded _...
16

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
  #ifndef __ASSEMBLY__
21e9ac7b2   Ralf Baechle   [MIPS] MIPS doesn...
18
  #define __ARCH_OMIT_COMPAT_SYS_GETDENTS64
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
21
  #define __ARCH_WANT_OLD_READDIR
  #define __ARCH_WANT_SYS_ALARM
  #define __ARCH_WANT_SYS_GETHOSTNAME
baed7fc9b   Christoph Hellwig   Add generic sys_i...
22
  #define __ARCH_WANT_SYS_IPC
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
24
25
26
27
  #define __ARCH_WANT_SYS_PAUSE
  #define __ARCH_WANT_SYS_SGETMASK
  #define __ARCH_WANT_SYS_UTIME
  #define __ARCH_WANT_SYS_WAITPID
  #define __ARCH_WANT_SYS_SOCKETCALL
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
29
30
31
  #define __ARCH_WANT_SYS_GETPGRP
  #define __ARCH_WANT_SYS_LLSEEK
  #define __ARCH_WANT_SYS_NICE
  #define __ARCH_WANT_SYS_OLD_GETRLIMIT
5cacdb4ad   Christoph Hellwig   Add generic sys_o...
32
  #define __ARCH_WANT_SYS_OLD_UNAME
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
34
35
  #define __ARCH_WANT_SYS_OLDUMOUNT
  #define __ARCH_WANT_SYS_SIGPENDING
  #define __ARCH_WANT_SYS_SIGPROCMASK
875d43e72   Ralf Baechle   [PATCH] mips: cle...
36
  # ifdef CONFIG_32BIT
359bbd42a   Ralf Baechle   [MIPS] Fold non-_...
37
  #  define __ARCH_WANT_STAT64
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
39
40
41
42
  #  define __ARCH_WANT_SYS_TIME
  # endif
  # ifdef CONFIG_MIPS32_O32
  #  define __ARCH_WANT_COMPAT_SYS_TIME
  # endif
50150d2bb   Al Viro   mips: switch to g...
43
44
  #define __ARCH_WANT_SYS_FORK
  #define __ARCH_WANT_SYS_CLONE
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45

83d0f2332   Atsushi Nemoto   [MIPS] Add whitel...
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  /* whitelists for checksyscalls */
  #define __IGNORE_select
  #define __IGNORE_vfork
  #define __IGNORE_time
  #define __IGNORE_uselib
  #define __IGNORE_fadvise64_64
  #define __IGNORE_getdents64
  #if _MIPS_SIM == _MIPS_SIM_NABI32
  #define __IGNORE_truncate64
  #define __IGNORE_ftruncate64
  #define __IGNORE_stat64
  #define __IGNORE_lstat64
  #define __IGNORE_fstat64
  #define __IGNORE_fstatat64
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61
  #endif /* !__ASSEMBLY__ */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
  #endif /* _ASM_UNISTD_H */