Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2000, Gaƫl Roualland <gael.roualland@iname.com> |
| 3 | # All rights reserved. |
| 4 | # |
| 5 | # Redistribution and use in source and binary forms, with or without |
| 6 | # modification, are permitted provided that the following conditions |
| 7 | # are met: |
| 8 | # 1. Redistributions of source code must retain the above copyright |
| 9 | # notice, this list of conditions and the following disclaimer. |
| 10 | # 2. Redistributions in binary form must reproduce the above copyright |
| 11 | # notice, this list of conditions and the following disclaimer in the |
| 12 | # documentation and/or other materials provided with the distribution. |
| 13 | # 3. The name of the author may not be used to endorse or promote products |
| 14 | # derived from this software without specific prior written permission. |
| 15 | # |
| 16 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 17 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 18 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 19 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 21 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 25 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | # |
| 27 | # $Id$ |
| 28 | # |
| 29 | # Syscalls categories |
| 30 | # syntax: syscall catmask |
| 31 | # |
| 32 | # mostly built from other archs/os syscallent.h |
| 33 | |
| 34 | # file calls |
| 35 | access TF |
| 36 | acct TF |
| 37 | acl TF |
| 38 | chdir TF |
| 39 | chmod TF |
| 40 | chown TF |
| 41 | chroot TF |
| 42 | creat TF |
| 43 | close TF |
| 44 | chflags TF |
| 45 | fstat64 TF |
| 46 | fstat TF |
| 47 | fchdir TF |
| 48 | fchflags TF |
| 49 | lchown TF |
| 50 | link TF |
| 51 | lstat TF |
| 52 | lstat64 TF |
| 53 | lxstat TF |
| 54 | mkdir TF |
| 55 | mknod TF |
| 56 | mount TF |
| 57 | oldlstat TF |
| 58 | oldstat TF |
| 59 | oldumount TF |
| 60 | open TF |
| 61 | outime TF |
| 62 | pathconf TF |
| 63 | pread TF |
| 64 | pwrite TF |
| 65 | readlink TF |
| 66 | rename TF |
| 67 | rmdir TF |
| 68 | sendfile TF |
| 69 | stat TF |
| 70 | stat64 TF |
| 71 | statfs TF |
| 72 | statvfs TF |
| 73 | swapon TF |
| 74 | symlink TF |
| 75 | truncate TF |
| 76 | umount TF |
| 77 | unlink TF |
| 78 | unmount TF |
| 79 | uselib TF |
| 80 | utime TF |
| 81 | utimes TF |
| 82 | xmknod TF |
| 83 | xstat TF |
| 84 | |
| 85 | # file/process calls |
| 86 | exec TF|TP |
| 87 | execv TF|TP |
| 88 | execve TF|TP |
| 89 | |
| 90 | # IPC calls |
| 91 | msgctl TI |
| 92 | msgget TI |
| 93 | msgrcv TI |
| 94 | msgsnd TI |
| 95 | msgsys TI |
| 96 | semctl TI |
| 97 | semget TI |
| 98 | semop TI |
| 99 | semsys TI |
| 100 | shmat TI |
| 101 | shmctl TI |
| 102 | shmdt TI |
| 103 | shmget TI |
| 104 | shmsys TI |
| 105 | |
| 106 | # network calls |
| 107 | accept TN |
| 108 | bind TN |
| 109 | connect TN |
| 110 | getmsg TN |
| 111 | getpeername TN |
| 112 | getpmsg TN |
| 113 | getsockname TN |
| 114 | getsockopt TN |
| 115 | listen TN |
| 116 | poll TN |
| 117 | putmsg TN |
| 118 | putpmsg TN |
| 119 | recv TN |
| 120 | recvfrom TN |
| 121 | recvmsg TN |
| 122 | send TN |
| 123 | sendmsg TN |
| 124 | sendto TN |
| 125 | setsockopt TN |
| 126 | shutdown TN |
| 127 | socket TN |
| 128 | socketpair TN |
| 129 | |
| 130 | # process calls |
| 131 | _exit TP |
| 132 | clone TP |
| 133 | fork TP |
| 134 | fork1 TP |
| 135 | owait TP |
| 136 | owait3 TP |
| 137 | vfork TP |
| 138 | wait TP |
| 139 | wait4 TP |
| 140 | waitid TP |
| 141 | waitpid TP |
| 142 | waitsys TP |
| 143 | |
| 144 | # signal calls |
| 145 | kill TS |
| 146 | killpg TS |
| 147 | ksigqueue TS |
| 148 | pause TS |
| 149 | rt_sigaction TS |
| 150 | rt_sigpending TS |
| 151 | rt_sigprocmask TS |
| 152 | rt_sigqueueinfo TS |
| 153 | rt_sigreturn TS |
| 154 | rt_sigsuspend TS |
| 155 | rt_sigtimedwait TS |
| 156 | sigaction TS |
| 157 | sigaltstack TS |
| 158 | sigblock TS |
| 159 | sigcleanup TS |
| 160 | sigfillset TS |
| 161 | siggetmask TS |
| 162 | sighold TS |
| 163 | sigignore TS |
| 164 | signal TS |
| 165 | sigpause TS |
| 166 | sigpending TS |
| 167 | sigpoll TS |
| 168 | sigprocmask TS |
| 169 | sigrelse TS |
| 170 | sigreturn TS |
| 171 | sigsendset TS |
| 172 | sigset TS |
| 173 | sigsetmask TS |
| 174 | sigstack TS |
| 175 | sigsuspend TS |
| 176 | sigtimedwait TS |
| 177 | sigvec TS |