diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-01-02 05:38:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-01-02 05:38:28 +0000 |
commit | 285407cc1701a5afc57fb110c5852c7ebabe1b3b (patch) | |
tree | cac33ab14f4dcc1be9b1cd8dc145b91a321fdc4a | |
parent | 14da5bb79bde3fa8a6de6c1eb51fcff6c0136e4e (diff) |
sync
-rw-r--r-- | sys/kern/init_sysent.c | 2 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 2 | ||||
-rw-r--r-- | sys/sys/syscall.h | 369 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 2 |
4 files changed, 371 insertions, 4 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 170a0a18fa1..cbeb02a5be7 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 1997/11/14 20:56:03 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.20 1998/01/02 05:32:51 deraadt Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 1444df66803..a25e55805e8 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 1997/11/14 20:56:03 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.20 1998/01/02 05:32:51 deraadt Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 34f96f021f8..3c9f93860e3 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -2,220 +2,587 @@ * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 1997/11/14 20:56:03 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.20 1998/01/02 05:32:51 deraadt Exp */ +/* syscall: "syscall" ret: "int" args: */ #define SYS_syscall 0 + +/* syscall: "exit" ret: "int" args: "int" */ #define SYS_exit 1 + +/* syscall: "fork" ret: "int" args: */ #define SYS_fork 2 + +/* syscall: "read" ret: "int" args: "int" "char *" "u_int" */ #define SYS_read 3 + +/* syscall: "write" ret: "int" args: "int" "char *" "u_int" */ #define SYS_write 4 + +/* syscall: "open" ret: "int" args: "char *" "int" "int" */ #define SYS_open 5 + +/* syscall: "close" ret: "int" args: "int" */ #define SYS_close 6 + +/* syscall: "wait4" ret: "int" args: "int" "int *" "int" "struct rusage *" */ #define SYS_wait4 7 + /* 8 is compat_43 ocreat */ + +/* syscall: "link" ret: "int" args: "char *" "char *" */ #define SYS_link 9 + +/* syscall: "unlink" ret: "int" args: "char *" */ #define SYS_unlink 10 + /* 11 is obsolete execv */ +/* syscall: "chdir" ret: "int" args: "char *" */ #define SYS_chdir 12 + +/* syscall: "fchdir" ret: "int" args: "int" */ #define SYS_fchdir 13 + +/* syscall: "mknod" ret: "int" args: "char *" "int" "int" */ #define SYS_mknod 14 + +/* syscall: "chmod" ret: "int" args: "char *" "int" */ #define SYS_chmod 15 + +/* syscall: "chown" ret: "int" args: "char *" "int" "int" */ #define SYS_chown 16 + +/* syscall: "break" ret: "int" args: "char *" */ #define SYS_break 17 + +/* syscall: "getfsstat" ret: "int" args: "struct statfs *" "long" "int" */ #define SYS_getfsstat 18 + /* 19 is compat_43 olseek */ + +/* syscall: "getpid" ret: "pid_t" args: */ #define SYS_getpid 20 + +/* syscall: "mount" ret: "int" args: "char *" "char *" "int" "caddr_t" */ #define SYS_mount 21 + +/* syscall: "unmount" ret: "int" args: "char *" "int" */ #define SYS_unmount 22 + +/* syscall: "setuid" ret: "int" args: "uid_t" */ #define SYS_setuid 23 + +/* syscall: "getuid" ret: "uid_t" args: */ #define SYS_getuid 24 + +/* syscall: "geteuid" ret: "uid_t" args: */ #define SYS_geteuid 25 + +/* syscall: "ptrace" ret: "int" args: "int" "pid_t" "caddr_t" "int" */ #define SYS_ptrace 26 + +/* syscall: "recvmsg" ret: "int" args: "int" "struct msghdr *" "int" */ #define SYS_recvmsg 27 + +/* syscall: "sendmsg" ret: "int" args: "int" "caddr_t" "int" */ #define SYS_sendmsg 28 + +/* syscall: "recvfrom" ret: "int" args: "int" "caddr_t" "size_t" "int" "caddr_t" "int *" */ #define SYS_recvfrom 29 + +/* syscall: "accept" ret: "int" args: "int" "caddr_t" "int *" */ #define SYS_accept 30 + +/* syscall: "getpeername" ret: "int" args: "int" "caddr_t" "int *" */ #define SYS_getpeername 31 + +/* syscall: "getsockname" ret: "int" args: "int" "caddr_t" "int *" */ #define SYS_getsockname 32 + +/* syscall: "access" ret: "int" args: "char *" "int" */ #define SYS_access 33 + +/* syscall: "chflags" ret: "int" args: "char *" "int" */ #define SYS_chflags 34 + +/* syscall: "fchflags" ret: "int" args: "int" "int" */ #define SYS_fchflags 35 + +/* syscall: "sync" ret: "int" args: */ #define SYS_sync 36 + +/* syscall: "kill" ret: "int" args: "int" "int" */ #define SYS_kill 37 + /* 38 is compat_43 ostat */ + +/* syscall: "getppid" ret: "pid_t" args: */ #define SYS_getppid 39 + /* 40 is compat_43 olstat */ + +/* syscall: "dup" ret: "int" args: "u_int" */ #define SYS_dup 41 + +/* syscall: "pipe" ret: "int" args: */ #define SYS_pipe 42 + +/* syscall: "getegid" ret: "gid_t" args: */ #define SYS_getegid 43 + +/* syscall: "profil" ret: "int" args: "char *" "size_t" "u_long" "u_int" */ #define SYS_profil 44 + +/* syscall: "ktrace" ret: "int" args: "char *" "int" "int" "int" */ #define SYS_ktrace 45 + +/* syscall: "sigaction" ret: "int" args: "int" "struct sigaction *" "struct sigaction *" */ #define SYS_sigaction 46 + +/* syscall: "getgid" ret: "gid_t" args: */ #define SYS_getgid 47 + +/* syscall: "sigprocmask" ret: "int" args: "int" "sigset_t" */ #define SYS_sigprocmask 48 + +/* syscall: "getlogin" ret: "int" args: "char *" "u_int" */ #define SYS_getlogin 49 + +/* syscall: "setlogin" ret: "int" args: "char *" */ #define SYS_setlogin 50 + +/* syscall: "acct" ret: "int" args: "char *" */ #define SYS_acct 51 + +/* syscall: "sigpending" ret: "int" args: */ #define SYS_sigpending 52 + +/* syscall: "sigaltstack" ret: "int" args: "struct sigaltstack *" "struct sigaltstack *" */ #define SYS_sigaltstack 53 + +/* syscall: "ioctl" ret: "int" args: "int" "u_long" "caddr_t" */ #define SYS_ioctl 54 + +/* syscall: "reboot" ret: "int" args: "int" */ #define SYS_reboot 55 + +/* syscall: "revoke" ret: "int" args: "char *" */ #define SYS_revoke 56 + +/* syscall: "symlink" ret: "int" args: "char *" "char *" */ #define SYS_symlink 57 + +/* syscall: "readlink" ret: "int" args: "char *" "char *" "int" */ #define SYS_readlink 58 + +/* syscall: "execve" ret: "int" args: "char *" "char **" "char **" */ #define SYS_execve 59 + +/* syscall: "umask" ret: "int" args: "int" */ #define SYS_umask 60 + +/* syscall: "chroot" ret: "int" args: "char *" */ #define SYS_chroot 61 + /* 62 is compat_43 ofstat */ + /* 63 is compat_43 ogetkerninfo */ + /* 64 is compat_43 ogetpagesize */ + +/* syscall: "omsync" ret: "int" args: "caddr_t" "size_t" */ #define SYS_omsync 65 + +/* syscall: "vfork" ret: "int" args: */ #define SYS_vfork 66 + /* 67 is obsolete vread */ /* 68 is obsolete vwrite */ +/* syscall: "sbrk" ret: "int" args: "int" */ #define SYS_sbrk 69 + +/* syscall: "sstk" ret: "int" args: "int" */ #define SYS_sstk 70 + /* 71 is compat_43 ommap */ + +/* syscall: "vadvise" ret: "int" args: "int" */ #define SYS_vadvise 72 + +/* syscall: "munmap" ret: "int" args: "void *" "size_t" */ #define SYS_munmap 73 + +/* syscall: "mprotect" ret: "int" args: "void *" "size_t" "int" */ #define SYS_mprotect 74 + +/* syscall: "madvise" ret: "int" args: "void *" "size_t" "int" */ #define SYS_madvise 75 + /* 76 is obsolete vhangup */ /* 77 is obsolete vlimit */ +/* syscall: "mincore" ret: "int" args: "void *" "size_t" "char *" */ #define SYS_mincore 78 + +/* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */ #define SYS_getgroups 79 + +/* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */ #define SYS_setgroups 80 + +/* syscall: "getpgrp" ret: "int" args: */ #define SYS_getpgrp 81 + +/* syscall: "setpgid" ret: "int" args: "int" "int" */ #define SYS_setpgid 82 + +/* syscall: "setitimer" ret: "int" args: "u_int" "struct itimerval *" "struct itimerval *" */ #define SYS_setitimer 83 + /* 84 is compat_43 owait */ + +/* syscall: "swapon" ret: "int" args: "char *" */ #define SYS_swapon 85 + +/* syscall: "getitimer" ret: "int" args: "u_int" "struct itimerval *" */ #define SYS_getitimer 86 + /* 87 is compat_43 ogethostname */ + /* 88 is compat_43 osethostname */ + /* 89 is compat_43 ogetdtablesize */ + +/* syscall: "dup2" ret: "int" args: "u_int" "u_int" */ #define SYS_dup2 90 + +/* syscall: "fcntl" ret: "int" args: "int" "int" "void *" */ #define SYS_fcntl 92 + +/* syscall: "select" ret: "int" args: "u_int" "fd_set *" "fd_set *" "fd_set *" "struct timeval *" */ #define SYS_select 93 + +/* syscall: "fsync" ret: "int" args: "int" */ #define SYS_fsync 95 + +/* syscall: "setpriority" ret: "int" args: "int" "int" "int" */ #define SYS_setpriority 96 + +/* syscall: "socket" ret: "int" args: "int" "int" "int" */ #define SYS_socket 97 + +/* syscall: "connect" ret: "int" args: "int" "caddr_t" "int" */ #define SYS_connect 98 + /* 99 is compat_43 oaccept */ + +/* syscall: "getpriority" ret: "int" args: "int" "int" */ #define SYS_getpriority 100 + /* 101 is compat_43 osend */ + /* 102 is compat_43 orecv */ + +/* syscall: "sigreturn" ret: "int" args: "struct sigcontext *" */ #define SYS_sigreturn 103 + +/* syscall: "bind" ret: "int" args: "int" "caddr_t" "int" */ #define SYS_bind 104 + +/* syscall: "setsockopt" ret: "int" args: "int" "int" "int" "caddr_t" "int" */ #define SYS_setsockopt 105 + +/* syscall: "listen" ret: "int" args: "int" "int" */ #define SYS_listen 106 + /* 107 is obsolete vtimes */ /* 108 is compat_43 osigvec */ + /* 109 is compat_43 osigblock */ + /* 110 is compat_43 osigsetmask */ + +/* syscall: "sigsuspend" ret: "int" args: "int" */ #define SYS_sigsuspend 111 + /* 112 is compat_43 osigstack */ + /* 113 is compat_43 orecvmsg */ + /* 114 is compat_43 osendmsg */ + +/* syscall: "vtrace" ret: "int" args: "int" "int" */ #define SYS_vtrace 115 + /* 115 is obsolete vtrace */ +/* syscall: "gettimeofday" ret: "int" args: "struct timeval *" "struct timezone *" */ #define SYS_gettimeofday 116 + +/* syscall: "getrusage" ret: "int" args: "int" "struct rusage *" */ #define SYS_getrusage 117 + +/* syscall: "getsockopt" ret: "int" args: "int" "int" "int" "caddr_t" "int *" */ #define SYS_getsockopt 118 + /* 119 is obsolete resuba */ +/* syscall: "readv" ret: "int" args: "int" "struct iovec *" "u_int" */ #define SYS_readv 120 + +/* syscall: "writev" ret: "int" args: "int" "struct iovec *" "u_int" */ #define SYS_writev 121 + +/* syscall: "settimeofday" ret: "int" args: "struct timeval *" "struct timezone *" */ #define SYS_settimeofday 122 + +/* syscall: "fchown" ret: "int" args: "int" "int" "int" */ #define SYS_fchown 123 + +/* syscall: "fchmod" ret: "int" args: "int" "int" */ #define SYS_fchmod 124 + /* 125 is compat_43 orecvfrom */ + /* 126 is compat_43 osetreuid */ + /* 127 is compat_43 osetregid */ + +/* syscall: "rename" ret: "int" args: "char *" "char *" */ #define SYS_rename 128 + /* 129 is compat_43 otruncate */ + /* 130 is compat_43 oftruncate */ + +/* syscall: "flock" ret: "int" args: "int" "int" */ #define SYS_flock 131 + +/* syscall: "mkfifo" ret: "int" args: "char *" "int" */ #define SYS_mkfifo 132 + +/* syscall: "sendto" ret: "int" args: "int" "caddr_t" "size_t" "int" "caddr_t" "int" */ #define SYS_sendto 133 + +/* syscall: "shutdown" ret: "int" args: "int" "int" */ #define SYS_shutdown 134 + +/* syscall: "socketpair" ret: "int" args: "int" "int" "int" "int *" */ #define SYS_socketpair 135 + +/* syscall: "mkdir" ret: "int" args: "char *" "int" */ #define SYS_mkdir 136 + +/* syscall: "rmdir" ret: "int" args: "char *" */ #define SYS_rmdir 137 + +/* syscall: "utimes" ret: "int" args: "char *" "struct timeval *" */ #define SYS_utimes 138 + /* 139 is obsolete 4.2 sigreturn */ +/* syscall: "adjtime" ret: "int" args: "struct timeval *" "struct timeval *" */ #define SYS_adjtime 140 + /* 141 is compat_43 ogetpeername */ + /* 142 is compat_43 ogethostid */ + /* 143 is compat_43 osethostid */ + /* 144 is compat_43 ogetrlimit */ + /* 145 is compat_43 osetrlimit */ + /* 146 is compat_43 okillpg */ + +/* syscall: "setsid" ret: "int" args: */ #define SYS_setsid 147 + +/* syscall: "quotactl" ret: "int" args: "char *" "int" "int" "caddr_t" */ #define SYS_quotactl 148 + /* 149 is compat_43 oquota */ + /* 150 is compat_43 ogetsockname */ + +/* syscall: "nfssvc" ret: "int" args: "int" "caddr_t" */ #define SYS_nfssvc 155 + /* 156 is compat_43 ogetdirentries */ + +/* syscall: "statfs" ret: "int" args: "char *" "struct statfs *" */ #define SYS_statfs 157 + +/* syscall: "fstatfs" ret: "int" args: "int" "struct statfs *" */ #define SYS_fstatfs 158 + +/* syscall: "getfh" ret: "int" args: "char *" "fhandle_t *" */ #define SYS_getfh 161 + /* 162 is compat_09 ogetdomainname */ + /* 163 is compat_09 osetdomainname */ + /* 164 is compat_09 ouname */ + +/* syscall: "sysarch" ret: "int" args: "int" "char *" */ #define SYS_sysarch 165 + /* 169 is compat_10 osemsys */ + /* 170 is compat_10 omsgsys */ + /* 171 is compat_10 oshmsys */ + +/* syscall: "ntp_gettime" ret: "int" args: "struct timex *" */ #define SYS_ntp_gettime 175 + +/* syscall: "ntp_adjtime" ret: "int" args: "struct timex *" */ #define SYS_ntp_adjtime 176 + +/* syscall: "setgid" ret: "int" args: "gid_t" */ #define SYS_setgid 181 + +/* syscall: "setegid" ret: "int" args: "gid_t" */ #define SYS_setegid 182 + +/* syscall: "seteuid" ret: "int" args: "uid_t" */ #define SYS_seteuid 183 + +/* syscall: "lfs_bmapv" ret: "int" args: "fsid_t *" "struct block_info *" "int" */ #define SYS_lfs_bmapv 184 + +/* syscall: "lfs_markv" ret: "int" args: "fsid_t *" "struct block_info *" "int" */ #define SYS_lfs_markv 185 + +/* syscall: "lfs_segclean" ret: "int" args: "fsid_t *" "u_long" */ #define SYS_lfs_segclean 186 + +/* syscall: "lfs_segwait" ret: "int" args: "fsid_t *" "struct timeval *" */ #define SYS_lfs_segwait 187 + +/* syscall: "stat" ret: "int" args: "char *" "struct stat *" */ #define SYS_stat 188 + +/* syscall: "fstat" ret: "int" args: "int" "struct stat *" */ #define SYS_fstat 189 + +/* syscall: "lstat" ret: "int" args: "char *" "struct stat *" */ #define SYS_lstat 190 + +/* syscall: "pathconf" ret: "int" args: "char *" "int" */ #define SYS_pathconf 191 + +/* syscall: "fpathconf" ret: "int" args: "int" "int" */ #define SYS_fpathconf 192 + +/* syscall: "getrlimit" ret: "int" args: "u_int" "struct rlimit *" */ #define SYS_getrlimit 194 + +/* syscall: "setrlimit" ret: "int" args: "u_int" "struct rlimit *" */ #define SYS_setrlimit 195 + +/* syscall: "getdirentries" ret: "int" args: "int" "char *" "u_int" "long *" */ #define SYS_getdirentries 196 + +/* syscall: "mmap" ret: "void *" args: "void *" "size_t" "int" "int" "int" "long" "off_t" */ #define SYS_mmap 197 + +/* syscall: "__syscall" ret: "int" args: */ #define SYS___syscall 198 + +/* syscall: "lseek" ret: "off_t" args: "int" "int" "off_t" "int" */ #define SYS_lseek 199 + +/* syscall: "truncate" ret: "int" args: "char *" "int" "off_t" */ #define SYS_truncate 200 + +/* syscall: "ftruncate" ret: "int" args: "int" "int" "off_t" */ #define SYS_ftruncate 201 + +/* syscall: "__sysctl" ret: "int" args: "int *" "u_int" "void *" "size_t *" "void *" "size_t" */ #define SYS___sysctl 202 + +/* syscall: "mlock" ret: "int" args: "void *" "size_t" */ #define SYS_mlock 203 + +/* syscall: "munlock" ret: "int" args: "void *" "size_t" */ #define SYS_munlock 204 + +/* syscall: "undelete" ret: "int" args: "char *" */ #define SYS_undelete 205 + +/* syscall: "futimes" ret: "int" args: "int" "struct timeval *" */ #define SYS_futimes 206 + +/* syscall: "getpgid" ret: "int" args: "pid_t" */ #define SYS_getpgid 207 + +/* syscall: "__semctl" ret: "int" args: "int" "int" "int" "union semun *" */ #define SYS___semctl 220 + +/* syscall: "semget" ret: "int" args: "key_t" "int" "int" */ #define SYS_semget 221 + +/* syscall: "semop" ret: "int" args: "int" "struct sembuf *" "u_int" */ #define SYS_semop 222 + +/* syscall: "semconfig" ret: "int" args: "int" */ #define SYS_semconfig 223 + +/* syscall: "msgctl" ret: "int" args: "int" "int" "struct msqid_ds *" */ #define SYS_msgctl 224 + +/* syscall: "msgget" ret: "int" args: "key_t" "int" */ #define SYS_msgget 225 + +/* syscall: "msgsnd" ret: "int" args: "int" "void *" "size_t" "int" */ #define SYS_msgsnd 226 + +/* syscall: "msgrcv" ret: "int" args: "int" "void *" "size_t" "long" "int" */ #define SYS_msgrcv 227 + +/* syscall: "shmat" ret: "int" args: "int" "void *" "int" */ #define SYS_shmat 228 + +/* syscall: "shmctl" ret: "int" args: "int" "int" "struct shmid_ds *" */ #define SYS_shmctl 229 + +/* syscall: "shmdt" ret: "int" args: "void *" */ #define SYS_shmdt 230 + +/* syscall: "shmget" ret: "int" args: "key_t" "int" "int" */ #define SYS_shmget 231 + +/* syscall: "clock_gettime" ret: "int" args: "clockid_t" "struct timespec *" */ #define SYS_clock_gettime 232 + +/* syscall: "clock_settime" ret: "int" args: "clockid_t" "const struct timespec *" */ #define SYS_clock_settime 233 + +/* syscall: "clock_getres" ret: "int" args: "clockid_t" "struct timespec *" */ #define SYS_clock_getres 234 + +/* syscall: "nanosleep" ret: "int" args: "const struct timespec *" "struct timespec *" */ #define SYS_nanosleep 240 + +/* syscall: "minherit" ret: "int" args: "void *" "size_t" "int" */ #define SYS_minherit 250 + +/* syscall: "rfork" ret: "int" args: "int" */ #define SYS_rfork 251 + +/* syscall: "poll" ret: "int" args: "struct pollfd *" "unsigned long" "int" */ #define SYS_poll 252 + +/* syscall: "issetugid" ret: "int" args: */ #define SYS_issetugid 253 + +/* syscall: "lchown" ret: "int" args: "char *" "int" "int" */ #define SYS_lchown 254 + +/* syscall: "getsid" ret: "int" args: "pid_t" */ #define SYS_getsid 255 + +/* syscall: "msync" ret: "int" args: "void *" "size_t" "int" */ #define SYS_msync 256 + #define SYS_MAXSYSCALL 257 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 522dee6d557..ed280f72006 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -2,7 +2,7 @@ * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.19 1997/11/14 20:56:03 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.20 1998/01/02 05:32:51 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } |