1994-10-24 20:37:34 +03:00
|
|
|
$NetBSD: syscalls.master,v 1.3 1994/10/24 17:38:02 deraadt Exp $
|
1994-06-29 10:29:24 +04:00
|
|
|
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
1994-05-22 14:04:26 +04:00
|
|
|
; System call name/number master file (or rather, slave, from SunOS).
|
|
|
|
; Processed to created svr4_sysent.c, svr4_syscalls.c and svr4_syscall.h.
|
|
|
|
|
|
|
|
; Columns: number type nargs name altname/comments
|
|
|
|
; number system call number, must be in order
|
|
|
|
; type one of STD, OBSOL, UNIMPL, STD
|
|
|
|
; nargs number of arguments
|
|
|
|
; name name of syscall routine
|
|
|
|
; altname name of system call if different
|
|
|
|
; for UNIMPL/OBSOL, name continues with comments
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <compat/svr4/svr4_types.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
#include <compat/svr4/svr4_syscallargs.h>
|
|
|
|
|
1994-05-22 14:04:26 +04:00
|
|
|
; types:
|
|
|
|
; STD always included
|
|
|
|
; STD included on COMPAT #ifdef
|
|
|
|
; LIBSTD included on COMPAT #ifdef, and placed in syscall.h
|
|
|
|
; OBSOL obsolete, not included in system, only specifies name
|
|
|
|
; UNIMPL not implemented, placeholder only
|
|
|
|
|
|
|
|
; #ifdef's, etc. may be included, and are copied to the output files.
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
0 NOARGS { int nosys(void); } syscall
|
|
|
|
1 NOARGS { int exit(int rval); }
|
|
|
|
2 NOARGS { int fork(void); }
|
|
|
|
3 NOARGS { int read(int fd, char *buf, u_int nbyte); }
|
|
|
|
4 NOARGS { int write(int fd, char *buf, u_int nbyte); }
|
|
|
|
5 STD { int svr4_open(char *path, int flags, \
|
|
|
|
int mode); }
|
|
|
|
6 NOARGS { int close(int fd); }
|
|
|
|
7 STD { int svr4_wait(int *status); }
|
|
|
|
8 STD { int svr4_creat(char *path, int mode); }
|
|
|
|
9 NOARGS { int link(char *path, char *link); }
|
|
|
|
10 NOARGS { int unlink(char *path); }
|
|
|
|
11 STD { int svr4_execv(char *path, \
|
|
|
|
char * * argp); }
|
|
|
|
12 NOARGS { int chdir(char *path); }
|
|
|
|
13 STD { int svr4_time(svr4_time_t *t); }
|
|
|
|
14 STD { int svr4_mknod(char* path, int mode, int dev); }
|
|
|
|
15 NOARGS { int chmod(char *path, int mode); }
|
|
|
|
16 NOARGS { int chown(char *path, int uid, int gid); }
|
|
|
|
17 STD { int svr4_break(caddr_t nsize); }
|
|
|
|
18 STD { int svr4_stat(char* path, \
|
|
|
|
struct svr4_stat* ub); }
|
|
|
|
19 NOARGS { long lseek(int fd, long offset, int whence); }
|
|
|
|
20 NOARGS { pid_t getpid(void); }
|
|
|
|
21 UNIMPL svr4_old_mount
|
|
|
|
22 UNIMPL System V umount
|
|
|
|
23 NOARGS { int setuid(uid_t uid); }
|
|
|
|
24 NOARGS { uid_t getuid(void); }
|
|
|
|
25 UNIMPL svr4_stime
|
|
|
|
26 UNIMPL svr4_ptrace
|
|
|
|
27 UNIMPL svr4_alarm
|
|
|
|
28 STD { int svr4_fstat(int fd, struct svr4_stat *sb); }
|
|
|
|
29 UNIMPL svr4_pause
|
|
|
|
30 UNIMPL svr4_utime
|
|
|
|
31 UNIMPL was stty
|
|
|
|
32 UNIMPL was gtty
|
|
|
|
33 STD { int svr4_access(char *path, int flags); }
|
|
|
|
34 UNIMPL svr4_nice
|
|
|
|
35 UNIMPL svr4_statfs
|
|
|
|
36 NOARGS { int sync(void); }
|
|
|
|
37 NOARGS { int kill(int pid, int signum); }
|
|
|
|
38 UNIMPL svr4_fstatfs
|
|
|
|
39 UNIMPL svr4_pgrpsys
|
|
|
|
40 UNIMPL svr4_xenix
|
|
|
|
41 NOARGS { int dup(u_int fd); }
|
|
|
|
42 NOARGS { int pipe(void); }
|
|
|
|
43 STD { int svr4_times(struct tms *tp); }
|
|
|
|
44 UNIMPL svr4_profil
|
|
|
|
45 UNIMPL svr4_plock
|
|
|
|
46 UNIMPL svr4_setgid
|
|
|
|
47 NOARGS { gid_t getgid(void); }
|
|
|
|
48 STD { int svr4_signal(int signum, svr4_sig_t handler); }
|
1994-05-22 14:04:26 +04:00
|
|
|
#ifdef SYSVMSG
|
1994-10-24 20:37:34 +03:00
|
|
|
49 UNIMPL { int msgsys(int which, int a2, int a3, int a4, \
|
|
|
|
int a5, int a6); }
|
1994-05-22 14:04:26 +04:00
|
|
|
#else
|
1994-10-24 20:37:34 +03:00
|
|
|
49 UNIMPL nosys
|
1994-05-22 14:04:26 +04:00
|
|
|
#endif
|
1994-10-24 20:37:34 +03:00
|
|
|
50 STD { int svr4_syssun(int gate); }
|
|
|
|
51 UNIMPL svr4_acct
|
1994-05-22 14:04:26 +04:00
|
|
|
#ifdef SYSVSHM
|
1994-10-24 20:37:34 +03:00
|
|
|
52 UNIMPL { int shmsys(int which, int a2, int a3, int a4); }
|
1994-05-22 14:04:26 +04:00
|
|
|
#else
|
1994-10-24 20:37:34 +03:00
|
|
|
52 UNIMPL nosys
|
1994-05-22 14:04:26 +04:00
|
|
|
#endif
|
|
|
|
#ifdef SYSVSEM
|
1994-10-24 20:37:34 +03:00
|
|
|
53 UNIMPL { int semsys(int which, int a2, int a3, int a4, \
|
|
|
|
int a5); }
|
1994-05-22 14:04:26 +04:00
|
|
|
#else
|
1994-10-24 20:37:34 +03:00
|
|
|
53 UNIMPL nosys
|
1994-05-22 14:04:26 +04:00
|
|
|
#endif
|
1994-10-24 20:37:34 +03:00
|
|
|
54 STD { int svr4_ioctl(int fd, int com, caddr_t data); }
|
|
|
|
55 UNIMPL svr4_uadmin
|
|
|
|
56 UNIMPL svr4_exch
|
|
|
|
57 STD { int svr4_utssys(int sel); }
|
|
|
|
58 NOARGS { int fsync(int fd); }
|
|
|
|
59 STD { int svr4_execve(char *path, \
|
|
|
|
char * * argp, \
|
|
|
|
char * * envp); }
|
|
|
|
60 NOARGS { int umask(int newmask); }
|
|
|
|
61 NOARGS { int chroot(char *path); }
|
|
|
|
62 STD { int svr4_fcntl(int fd, int cmd, char *arg); }
|
|
|
|
63 UNIMPL nosys
|
|
|
|
64 UNIMPL reserved for unix/pc
|
|
|
|
65 UNIMPL reserved for unix/pc
|
|
|
|
66 UNIMPL reserved for unix/pc
|
|
|
|
67 UNIMPL reserved for unix/pc
|
|
|
|
68 UNIMPL reserved for unix/pc
|
|
|
|
69 UNIMPL reserved for unix/pc
|
|
|
|
70 OBSOL svr4_advfs
|
|
|
|
71 OBSOL svr4_unadvfs
|
|
|
|
72 OBSOL svr4_rmount
|
|
|
|
73 OBSOL svr4_rumount
|
|
|
|
74 OBSOL svr4_rfstart
|
|
|
|
75 OBSOL svr4_sigret
|
|
|
|
76 OBSOL svr4_rdebug
|
|
|
|
77 OBSOL svr4_rfstop
|
|
|
|
78 UNIMPL svr4_rfsys
|
|
|
|
79 NOARGS { int mkdir(char *path, int mode); }
|
|
|
|
80 NOARGS { int rmdir(char *path); }
|
|
|
|
81 STD { int svr4_getdents(int fd, char *buf, int nbytes); }
|
|
|
|
82 OBSOL svr4_libattach
|
|
|
|
83 OBSOL svr4_libdetach
|
|
|
|
84 UNIMPL svr4_sysfs
|
|
|
|
85 UNIMPL svr4_getmsg
|
|
|
|
86 UNIMPL svr4_putmsg
|
|
|
|
87 UNIMPL svr4_poll
|
|
|
|
88 STD { int svr4_lstat(char *path, \
|
|
|
|
struct svr4_stat *ub); }
|
|
|
|
89 NOARGS { int symlink(char *path, char *link); }
|
|
|
|
90 NOARGS { int readlink(char *path, char *buf, int count); }
|
|
|
|
91 NOARGS { int getgroups(u_int gidsetsize, gid_t *gidset); }
|
|
|
|
92 NOARGS { int setgroups(u_int gidsetsize, gid_t *gidset); }
|
|
|
|
93 NOARGS { int fchmod(int fd, int mode); }
|
|
|
|
94 NOARGS { int fchown(int fd, int uid, int gid); }
|
|
|
|
95 NOARGS { int sigprocmask(int how, sigset_t mask); }
|
|
|
|
96 NOARGS { int sigaltstack(struct sigaltstack *nss, \
|
|
|
|
struct sigaltstack *oss); }
|
|
|
|
97 NOARGS { int sigsuspend(int mask); }
|
|
|
|
98 NOARGS { int sigaction(int signum, struct sigaction *nsa, \
|
|
|
|
struct sigaction *osa); }
|
|
|
|
99 STD { int svr4_sigpending(int *mask); }
|
|
|
|
100 UNIMPL svr4_context
|
|
|
|
101 UNIMPL svr4_evsys
|
|
|
|
102 UNIMPL svr4_evtrapret
|
|
|
|
103 UNIMPL svr4_statvfs
|
|
|
|
104 UNIMPL svr4_fstatvfs
|
|
|
|
105 UNIMPL svr4 reserved
|
1994-05-22 14:04:26 +04:00
|
|
|
#ifdef NFSSERVER
|
1994-10-24 20:37:34 +03:00
|
|
|
106 UNIMPL svr4_nfssvc
|
1994-05-22 14:04:26 +04:00
|
|
|
#else
|
1994-10-24 20:37:34 +03:00
|
|
|
106 UNIMPL nosys
|
1994-05-22 14:04:26 +04:00
|
|
|
#endif
|
1994-10-24 20:37:34 +03:00
|
|
|
107 UNIMPL svr4_waitsys
|
|
|
|
108 UNIMPL svr4_sigsendsys
|
|
|
|
109 UNIMPL svr4_hrtsys
|
|
|
|
110 UNIMPL svr4_acancel
|
|
|
|
111 UNIMPL svr4_async
|
|
|
|
112 UNIMPL svr4_priocntlsys
|
|
|
|
113 UNIMPL svr4_pathconf
|
|
|
|
114 UNIMPL svr4_mincore
|
|
|
|
115 STD { int svr4_mmap(svr4_caddr_t addr, svr4_size_t len, \
|
|
|
|
int prot, int flags, int fd, \
|
|
|
|
svr4_off_t pos); }
|
|
|
|
116 NOARGS { int mprotect(caddr_t addr, int len, int prot); }
|
|
|
|
117 NOARGS { int munmap(caddr_t addr, int len); }
|
|
|
|
118 NOARGS { int fpathconf(int fd, int name); }
|
|
|
|
119 NOARGS { int vfork(void); }
|
|
|
|
120 NOARGS { int fchdir(int fd); }
|
|
|
|
121 NOARGS { int readv(int fd, struct iovec *iovp, u_int iovcnt); }
|
|
|
|
122 NOARGS { int writev(int fd, struct iovec *iovp, \
|
|
|
|
u_int iovcnt); }
|
|
|
|
123 STD { int svr4_xstat(int two, char *path, \
|
|
|
|
struct svr4_xstat *ub); }
|
|
|
|
124 STD { int svr4_lxstat(int two, char *path, \
|
|
|
|
struct svr4_xstat *ub); }
|
|
|
|
125 STD { int svr4_fxstat(int two, int fd, \
|
|
|
|
struct svr4_xstat *sb); }
|
|
|
|
126 UNIMPL svr4_xmknod
|
|
|
|
127 UNIMPL svr4_clocal
|
|
|
|
128 STD { int svr4_setrlimit(int which, \
|
|
|
|
struct ogetrlimit *rlp); }
|
|
|
|
129 STD { int svr4_getrlimit(int which, \
|
|
|
|
struct ogetrlimit *rlp); }
|
|
|
|
130 UNIMPL svr4_lchown
|
|
|
|
131 UNIMPL svr4_memcntl
|
|
|
|
132 UNIMPL svr4_getpmsg
|
|
|
|
133 UNIMPL svr4_putpmsg
|
|
|
|
134 NOARGS { int rename(char *from, char *to); }
|
|
|
|
135 STD { int svr4_uname(struct svr4_utsname* name, \
|
|
|
|
int dummy); }
|
|
|
|
136 NOARGS { int setegid(gid_t egid); }
|
|
|
|
137 STD { int svr4_sysconfig(int name); }
|
|
|
|
138 NOARGS { int adjtime(struct timeval *delta, \
|
|
|
|
struct timeval *olddelta); }
|
|
|
|
139 UNIMPL svr4_systeminfo
|
|
|
|
140 UNIMPL reserved
|
|
|
|
141 NOARGS { int seteuid(uid_t euid); }
|
|
|
|
142 UNIMPL vtrace
|
|
|
|
143 UNIMPL svr4_fork1
|
|
|
|
144 UNIMPL svr4_sigwait
|
|
|
|
145 UNIMPL svr4_lwp_info
|
|
|
|
146 UNIMPL svr4_yield
|
|
|
|
147 UNIMPL svr4_lwp_sema_p
|
|
|
|
148 UNIMPL svr4_lwp_sema_v
|
|
|
|
149 UNIMPL reserved
|
|
|
|
150 UNIMPL reserved
|
|
|
|
151 UNIMPL reserved
|
|
|
|
152 UNIMPL svr4_modctl
|
|
|
|
153 STD { int svr4_fchroot(int fd); }
|
|
|
|
154 UNIMPL svr4_utimes
|
|
|
|
155 STD { int svr4_vhangup(void); }
|
|
|
|
156 NOARGS { int gettimeofday(struct timeval *tp, \
|
|
|
|
struct timezone *tzp); }
|
|
|
|
157 NOARGS { int getitimer(u_int which, struct itimerval *itv); }
|
|
|
|
158 NOARGS { int setitimer(u_int which, struct itimerval *itv, \
|
|
|
|
struct itimerval *oitv); }
|
|
|
|
159 UNIMPL svr4_lwp_create
|
|
|
|
160 UNIMPL svr4_lwp_exit
|
|
|
|
161 UNIMPL svr4_lwp_suspend
|
|
|
|
162 UNIMPL svr4_lwp_continue
|
|
|
|
163 UNIMPL svr4_lwp_kill
|
|
|
|
164 UNIMPL svr4_lwp_self
|
|
|
|
165 UNIMPL svr4_lwp_getprivate
|
|
|
|
166 UNIMPL svr4_lwp_setprivate
|
|
|
|
167 UNIMPL svr4_lwp_wait
|
|
|
|
168 UNIMPL svr4_lwp_mutex_unlock
|
|
|
|
169 UNIMPL svr4_lwp_mutex_lock
|
|
|
|
170 UNIMPL svr4_lwp_cond_wait
|
|
|
|
171 UNIMPL svr4_lwp_cond_signal
|
|
|
|
172 UNIMPL svr4_lwp_cond_broadcast
|
|
|
|
173 UNIMPL svr4_pread
|
|
|
|
174 UNIMPL svr4_pwrite
|
|
|
|
175 UNIMPL svr4_llseek
|
|
|
|
176 UNIMPL svr4_inst_sync
|
|
|
|
177 UNIMPL reserved
|
|
|
|
178 UNIMPL reserved
|
|
|
|
179 UNIMPL reserved
|
|
|
|
180 UNIMPL reserved
|
|
|
|
181 UNIMPL reserved
|
|
|
|
182 UNIMPL reserved
|
|
|
|
183 UNIMPL reserved
|
|
|
|
184 UNIMPL reserved
|
|
|
|
185 UNIMPL reserved
|
|
|
|
186 UNIMPL svr4_auditsys
|