Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl> |
| 3 | * Copyright (c) 1993, 1994, 1995 Rick Sladkey <jrs@world.std.com> |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions |
| 8 | * are met: |
| 9 | * 1. Redistributions of source code must retain the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer. |
| 11 | * 2. Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in the |
| 13 | * documentation and/or other materials provided with the distribution. |
| 14 | * 3. The name of the author may not be used to endorse or promote products |
| 15 | * derived from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 27 | */ |
| 28 | |
Dmitry V. Levin | 44f0ed1 | 2013-05-01 15:56:22 +0000 | [diff] [blame] | 29 | #ifndef HAVE_STRUCT___OLD_KERNEL_STAT |
| 30 | #define sys_oldfstat printargs |
| 31 | #define sys_oldstat printargs |
| 32 | #endif |
| 33 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 34 | /* still unfinished */ |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 35 | #define sys_add_key printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 36 | #define sys_fanotify_init printargs |
| 37 | #define sys_fanotify_mark printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 38 | #define sys_ioperm printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 39 | #define sys_iopl printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 40 | #define sys_ioprio_get printargs |
| 41 | #define sys_ioprio_set printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 42 | #define sys_kexec_load printargs |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 43 | #define sys_keyctl printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 44 | #define sys_lookup_dcookie printargs |
Dmitry V. Levin | 00ebeee | 2011-11-26 23:37:23 +0000 | [diff] [blame] | 45 | #define sys_name_to_handle_at printargs |
Dmitry V. Levin | 00ebeee | 2011-11-26 23:37:23 +0000 | [diff] [blame] | 46 | #define sys_open_by_handle_at printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 47 | #define sys_request_key printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 48 | #define sys_sync_file_range printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 49 | #define sys_sysfs printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 50 | #define sys_vm86old printargs |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 51 | #define sys_vm86 printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 52 | |
Roland McGrath | 67ecd63 | 2002-12-15 23:58:21 +0000 | [diff] [blame] | 53 | /* machine-specific */ |
| 54 | #ifndef I386 |
| 55 | #define sys_modify_ldt printargs |
Andreas Schwab | 5874322 | 2010-05-28 22:28:51 +0200 | [diff] [blame] | 56 | #ifndef M68K |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 57 | #define sys_get_thread_area printargs |
| 58 | #define sys_set_thread_area printargs |
Roland McGrath | 67ecd63 | 2002-12-15 23:58:21 +0000 | [diff] [blame] | 59 | #endif |
Andreas Schwab | 5874322 | 2010-05-28 22:28:51 +0200 | [diff] [blame] | 60 | #endif |
Roland McGrath | 67ecd63 | 2002-12-15 23:58:21 +0000 | [diff] [blame] | 61 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 62 | /* like another call */ |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 63 | #define sys_acct sys_chdir |
Dmitry V. Levin | ad178c0 | 2011-11-28 22:48:53 +0000 | [diff] [blame] | 64 | #define sys_chroot sys_chdir |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 65 | #define sys_clock_getres sys_clock_gettime |
Roland McGrath | 6e26127 | 2007-07-05 19:28:35 +0000 | [diff] [blame] | 66 | #define sys_delete_module sys_open |
Dmitry V. Levin | ad178c0 | 2011-11-28 22:48:53 +0000 | [diff] [blame] | 67 | #define sys_dup sys_close |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 68 | #define sys_fchdir sys_close |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 69 | #define sys_fdatasync sys_close |
Dmitry V. Levin | 531af48 | 2012-03-11 15:28:03 +0000 | [diff] [blame] | 70 | #define sys_fsync sys_close |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 71 | #define sys_getegid sys_getuid |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 72 | #define sys_geteuid sys_getuid |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 73 | #define sys_getgid sys_getuid |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 74 | #define sys_getresgid sys_getresuid |
Dmitry V. Levin | 44f0ed1 | 2013-05-01 15:56:22 +0000 | [diff] [blame] | 75 | #define sys_lstat sys_stat |
| 76 | #define sys_lstat64 sys_stat64 |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 77 | #define sys_mlock sys_munmap |
Dmitry V. Levin | ad178c0 | 2011-11-28 22:48:53 +0000 | [diff] [blame] | 78 | #define sys_mq_unlink sys_chdir |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 79 | #define sys_munlock sys_munmap |
Dmitry V. Levin | 44f0ed1 | 2013-05-01 15:56:22 +0000 | [diff] [blame] | 80 | #define sys_oldlstat sys_oldstat |
Dmitry V. Levin | ad178c0 | 2011-11-28 22:48:53 +0000 | [diff] [blame] | 81 | #define sys_pivotroot sys_link |
| 82 | #define sys_rename sys_link |
| 83 | #define sys_rmdir sys_chdir |
Denys Vlasenko | aea4b87 | 2012-02-28 16:39:44 +0100 | [diff] [blame] | 84 | #define sys_sched_get_priority_max sys_sched_get_priority_min |
Dmitry V. Levin | 1e8ed07 | 2012-03-11 21:57:57 +0000 | [diff] [blame] | 85 | #define sys_set_robust_list sys_munmap |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 86 | #define sys_setfsgid sys_setfsuid |
| 87 | #define sys_setgid sys_setuid |
Dmitry V. Levin | 51dba35 | 2012-03-11 15:45:20 +0000 | [diff] [blame] | 88 | #define sys_setns sys_inotify_rm_watch |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 89 | #define sys_setregid sys_setreuid |
| 90 | #define sys_setresgid sys_setresuid |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 91 | #define sys_swapoff sys_chdir |
Dmitry V. Levin | ad178c0 | 2011-11-28 22:48:53 +0000 | [diff] [blame] | 92 | #define sys_symlink sys_link |
Dmitry V. Levin | 00ebeee | 2011-11-26 23:37:23 +0000 | [diff] [blame] | 93 | #define sys_syncfs sys_close |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 94 | #define sys_umount sys_chdir |
Dmitry V. Levin | ad178c0 | 2011-11-28 22:48:53 +0000 | [diff] [blame] | 95 | #define sys_unlink sys_chdir |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 96 | #define sys_uselib sys_chdir |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 97 | |
| 98 | /* printargs does the right thing */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 99 | #define sys_getpgid printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 100 | #define sys_getpid printargs |
| 101 | #define sys_getppid printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 102 | #define sys_gettid printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 103 | #define sys_idle printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 104 | #define sys_inotify_init printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 105 | #define sys_munlockall printargs |
| 106 | #define sys_pause printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 107 | #define sys_rt_sigreturn printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 108 | #define sys_sched_yield printargs |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 109 | #define sys_setsid printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 110 | #define sys_set_tid_address printargs |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 111 | #define sys_setup printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 112 | #define sys_sync printargs |
| 113 | #define sys_timer_delete printargs |
| 114 | #define sys_timer_getoverrun printargs |
| 115 | #define sys_vhangup printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 116 | |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 117 | /* printargs_lu/ld does the right thing */ |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 118 | #define sys_alarm printargs_lu |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 119 | #define sys_getpgrp printargs_lu |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 120 | #define sys_getsid printargs_lu |
| 121 | #define sys_nice printargs_ld |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 122 | #define sys_setpgid printargs_lu |
| 123 | #define sys_setpgrp printargs_lu |
Denys Vlasenko | 72879c6 | 2012-02-27 14:18:02 +0100 | [diff] [blame] | 124 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 125 | /* unimplemented */ |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 126 | #define sys_afs_syscall printargs |
| 127 | #define sys_break printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 128 | #define sys_ftime printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 129 | #define sys_get_kernel_syms printargs |
| 130 | #define sys_gtty printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 131 | #define sys_lock printargs |
| 132 | #define sys_mpx printargs |
Dmitry V. Levin | f33ee91 | 2011-11-28 15:53:20 +0000 | [diff] [blame] | 133 | #define sys_nfsservctl printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 134 | #define sys_phys printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 135 | #define sys_profil printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 136 | #define sys_prof printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 137 | #define sys_security printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 138 | #define sys_stty printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 139 | #define sys_tuxcall printargs |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 140 | #define sys_ulimit printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 141 | #define sys_ustat printargs |
Dmitry V. Levin | b9e897d | 2011-10-12 19:03:29 +0000 | [diff] [blame] | 142 | #define sys_vserver printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 143 | |
| 144 | /* deprecated */ |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 145 | #define sys_bdflush printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 146 | #define sys_oldolduname printargs |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 147 | #define sys_olduname printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 148 | |
| 149 | /* no library support */ |
| 150 | #ifndef HAVE_SENDMSG |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 151 | #define sys_recvmsg printargs |
Dmitry V. Levin | 6bbe696 | 2012-03-11 15:43:04 +0000 | [diff] [blame] | 152 | #define sys_sendmsg printargs |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 153 | #endif |
| 154 | |
Denys Vlasenko | cc90291 | 2013-03-05 16:50:12 +0100 | [diff] [blame] | 155 | /* Who has STREAMS syscalls? |
| 156 | * Linux hasn't. Solaris has (had?). |
| 157 | * Just in case I miss something, retain in for Sparc. |
| 158 | * Note: SYS_get/putpmsg may be defined even though syscalls |
| 159 | * return ENOSYS. Can't just check defined(SYS_getpmsg). |
| 160 | */ |
| 161 | #if (!defined(SPARC) && !defined(SPARC64)) || !defined(SYS_getpmsg) |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 162 | #define sys_getpmsg printargs |
Roland McGrath | 8bcf357 | 2003-01-24 04:39:46 +0000 | [diff] [blame] | 163 | #endif |
Denys Vlasenko | cc90291 | 2013-03-05 16:50:12 +0100 | [diff] [blame] | 164 | #if (!defined(SPARC) && !defined(SPARC64)) || !defined(SYS_putpmsg) |
Dmitry V. Levin | 9e38484 | 2011-10-12 16:40:17 +0000 | [diff] [blame] | 165 | #define sys_putpmsg printargs |
Roland McGrath | 8bcf357 | 2003-01-24 04:39:46 +0000 | [diff] [blame] | 166 | #endif |