Deleted Added
full compact
syscalls.master (52334) syscalls.master (54300)
1; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
2; System call name/number master file (or rather, slave, from SVR4).
3; Processed to create svr4_sysent.c, svr4_syscalls.c and svr4_syscall.h.
4
5; Columns: number type nargs namespc name alt{name,tag,rtyp}/comments
6; number system call number, must be in order
7; type one of STD, OBSOL, UNIMPL, COMPAT
8; namespc one of POSIX, BSD, STD, NOHIDE (I dont care :-) -Peter
9; name psuedo-prototype of syscall routine
10; If one of the following alts is different, then all appear:
11; altname name of system call if different
12; alttag name of args struct tag if different from [o]`name'"_args"
13; altrtyp return type if not int (bogus - syscalls always return int)
14; for UNIMPL/OBSOL, name continues with comments
15
16; types:
17; STD always included
18; COMPAT included on COMPAT #ifdef
19; LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
20; OBSOL obsolete, not included in system, only specifies name
21; UNIMPL not implemented, placeholder only
22;
1; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
2; System call name/number master file (or rather, slave, from SVR4).
3; Processed to create svr4_sysent.c, svr4_syscalls.c and svr4_syscall.h.
4
5; Columns: number type nargs namespc name alt{name,tag,rtyp}/comments
6; number system call number, must be in order
7; type one of STD, OBSOL, UNIMPL, COMPAT
8; namespc one of POSIX, BSD, STD, NOHIDE (I dont care :-) -Peter
9; name psuedo-prototype of syscall routine
10; If one of the following alts is different, then all appear:
11; altname name of system call if different
12; alttag name of args struct tag if different from [o]`name'"_args"
13; altrtyp return type if not int (bogus - syscalls always return int)
14; for UNIMPL/OBSOL, name continues with comments
15
16; types:
17; STD always included
18; COMPAT included on COMPAT #ifdef
19; LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
20; OBSOL obsolete, not included in system, only specifies name
21; UNIMPL not implemented, placeholder only
22;
23; $FreeBSD: head/sys/compat/svr4/syscalls.master 52334 1999-10-17 14:50:13Z newton $
23; $FreeBSD: head/sys/compat/svr4/syscalls.master 54300 1999-12-08 10:51:17Z newton $
24;
25#include <sys/types.h>
26#include <sys/sysent.h>
27#include <sys/sysproto.h>
28#include <netinet/in.h>
29
24;
25#include <sys/types.h>
26#include <sys/sysent.h>
27#include <sys/sysproto.h>
28#include <netinet/in.h>
29
30#include <svr4/svr4.h>
30#include <svr4/svr4_types.h>
31#include <svr4/svr4_signal.h>
32#include <svr4/svr4_proto.h>
33
34; #ifdef's, etc. may be included, and are copied to the output files.
35
360 UNIMPL SVR4 unused
371 NOPROTO POSIX { int exit(int rval); }
382 NOPROTO POSIX { int fork(void); }
393 NOPROTO POSIX { int read(int fd, char *buf, u_int nbyte); }
404 NOPROTO SVR4 { int write(int fd, char *buf, u_int nbyte); }
415 STD SVR4 { int svr4_sys_open(char *path, int flags, int mode); }
426 NOPROTO SVR4 { int close(int fd); }
437 STD SVR4 { int svr4_sys_wait(int *status); }
448 STD SVR4 { int svr4_sys_creat(char *path, int mode); }
459 NOPROTO SVR4 { int link(char *path, char *link); }
4610 NOPROTO SVR4 { int unlink(char *path); }
4711 STD SVR4 { int svr4_sys_execv(char *path, char **argp); }
4812 NOPROTO SVR4 { int chdir(char *path); }
4913 STD SVR4 { int svr4_sys_time(time_t *t); }
5014 STD SVR4 { int svr4_sys_mknod(char* path, int mode, int dev); }
5115 NOPROTO SVR4 { int chmod(char *path, int mode); }
5216 NOPROTO SVR4 { int chown(char *path, uid_t uid, gid_t gid); }
5317 STD SVR4 { int svr4_sys_break(caddr_t nsize); }
5418 STD SVR4 { int svr4_sys_stat(char* path, \
55 struct svr4_stat* ub); }
5619 NOPROTO SVR4 { int lseek(int filedes, off_t *offset, int whence); }
5720 NOPROTO SVR4 { pid_t getpid(void); }
5821 UNIMPL SVR4 old_mount
5922 UNIMPL SVR4 sysv_umount
6023 NOPROTO SVR4 { int setuid(uid_t uid); }
6124 NOPROTO SVR4 { uid_t getuid(void); }
6225 UNIMPL SVR4 stime
6326 UNIMPL SVR4 ptrace
6427 STD SVR4 { int svr4_sys_alarm(unsigned sec); }
6528 STD SVR4 { int svr4_sys_fstat(int fd, struct svr4_stat *sb); }
6629 STD SVR4 { int svr4_sys_pause(void); }
6730 STD SVR4 { int svr4_sys_utime(char *path, \
68 struct svr4_utimbuf *ubuf); }
6931 UNIMPL SVR4 stty
7032 UNIMPL SVR4 gtty
7133 STD SVR4 { int svr4_sys_access(char *path, int flags); }
7234 STD SVR4 { int svr4_sys_nice(int prio); }
7335 UNIMPL SVR4 statfs
7436 NOPROTO SVR4 { int sync(void); }
7537 STD SVR4 { int svr4_sys_kill(int pid, int signum); }
7638 UNIMPL SVR4 fstatfs
7739 STD SVR4 { int svr4_sys_pgrpsys(int cmd, int pid, int pgid); }
7840 UNIMPL SVR4 xenix
7941 NOPROTO SVR4 { int dup(u_int fd); }
8042 NOPROTO SVR4 { int pipe(void); }
8143 STD SVR4 { int svr4_sys_times(struct tms *tp); }
8244 UNIMPL SVR4 profil
8345 UNIMPL SVR4 plock
8446 NOPROTO SVR4 { int setgid(gid_t gid); }
8547 NOPROTO SVR4 { gid_t getgid(void); }
8648 STD SVR4 { int svr4_sys_signal(int signum, \
87 svr4_sig_t handler); }
88#if defined(NOTYET)
8949 STD SVR4 { int svr4_sys_msgsys(int what, int a2, int a3, \
90 int a4, int a5); }
91#else
9249 UNIMPL SVR4 msgsys
93#endif
9450 STD SVR4 { int svr4_sys_sysarch(int op, void *a1); }
9551 UNIMPL SVR4 acct
9652 UNIMPL SVR4 shmsys
9753 UNIMPL SVR4 semsys
9854 STD SVR4 { int svr4_sys_ioctl(int fd, u_long com, \
99 caddr_t data); }
10055 UNIMPL SVR4 uadmin
10156 UNIMPL SVR4 exch
10257 STD SVR4 { int svr4_sys_utssys(void *a1, void *a2, int sel, \
103 void *a3); }
10458 NOPROTO SVR4 { int fsync(int fd); }
10559 STD SVR4 { int svr4_sys_execve(char *path, char **argp, \
106 char **envp); }
10760 NOPROTO SVR4 { int umask(int newmask); }
10861 NOPROTO SVR4 { int chroot(char *path); }
10962 STD SVR4 { int svr4_sys_fcntl(int fd, int cmd, char *arg); }
11063 STD SVR4 { int svr4_sys_ulimit(int cmd, long newlimit); }
11164 UNIMPL SVR4 reserved
11265 UNIMPL SVR4 reserved
11366 UNIMPL SVR4 reserved
11467 UNIMPL SVR4 reserved
11568 UNIMPL SVR4 reserved
11669 UNIMPL SVR4 reserved
11770 UNIMPL SVR4 advfs
11871 UNIMPL SVR4 unadvfs
11972 UNIMPL SVR4 rmount
12073 UNIMPL SVR4 rumount
12174 UNIMPL SVR4 rfstart
12275 UNIMPL SVR4 sigret
12376 UNIMPL SVR4 rdebug
12477 UNIMPL SVR4 rfstop
12578 UNIMPL SVR4 rfsys
12679 NOPROTO SVR4 { int rmdir(char *path); }
12780 NOPROTO SVR4 { int mkdir(char *path, int mode); }
12881 STD SVR4 { int svr4_sys_getdents(int fd, char *buf, \
129 int nbytes); }
13082 UNIMPL SVR4 libattach
13183 UNIMPL SVR4 libdetach
13284 UNIMPL SVR4 sysfs
13385 STD SVR4 { int svr4_sys_getmsg(int fd, struct svr4_strbuf *ctl, \
134 struct svr4_strbuf *dat, int *flags); }
13586 STD SVR4 { int svr4_sys_putmsg(int fd, struct svr4_strbuf *ctl, \
136 struct svr4_strbuf *dat, int flags); }
13787 STD SVR4 { int svr4_sys_poll(struct pollfd *fds, unsigned int nfds, \
138 int timeout); }
13988 STD SVR4 { int svr4_sys_lstat(char *path, \
140 struct svr4_stat *ub); }
14189 NOPROTO SVR4 { int symlink(char *path, char *link); }
14290 NOPROTO SVR4 { int readlink(char *path, char *buf, int count); }
14391 NOPROTO SVR4 { int getgroups(u_int gidsetsize, gid_t *gidset); }
14492 NOPROTO SVR4 { int setgroups(u_int gidsetsize, gid_t *gidset); }
14593 NOPROTO SVR4 { int fchmod(int fd, int mode); }
14694 NOPROTO SVR4 { int fchown(int fd, int uid, int gid); }
14795 STD SVR4 { int svr4_sys_sigprocmask(int how, \
148 svr4_sigset_t *set, svr4_sigset_t *oset); }
14996 STD SVR4 { int svr4_sys_sigsuspend(svr4_sigset_t *ss); }
15097 STD SVR4 { int svr4_sys_sigaltstack( \
151 struct svr4_sigaltstack *nss, \
152 struct svr4_sigaltstack *oss); }
15398 STD SVR4 { int svr4_sys_sigaction(int signum, \
154 struct svr4_sigaction *nsa, \
155 struct svr4_sigaction *osa); }
15699 STD SVR4 { int svr4_sys_sigpending(int what, \
157 svr4_sigset_t *mask); }
158100 STD SVR4 { int svr4_sys_context(int func, \
159 struct svr4_ucontext *uc); }
160101 UNIMPL SVR4 evsys
161102 UNIMPL SVR4 evtrapret
162103 STD SVR4 { int svr4_sys_statvfs(char *path, \
163 struct svr4_statvfs *fs); }
164104 STD SVR4 { int svr4_sys_fstatvfs(int fd, \
165 struct svr4_statvfs *fs); }
166105 UNIMPL SVR4 whoknows
167106 UNIMPL SVR4 nfssvc
168107 STD SVR4 { int svr4_sys_waitsys(int grp, int id, \
169 union svr4_siginfo *info, int options); }
170108 UNIMPL SVR4 sigsendsys
171109 STD SVR4 { int svr4_sys_hrtsys(int cmd, int fun, int sub, \
172 void *rv1, void *rv2); }
173110 UNIMPL SVR4 acancel
174111 UNIMPL SVR4 async
175112 UNIMPL SVR4 priocntlsys
176113 STD SVR4 { int svr4_sys_pathconf(char *path, int name); }
177114 UNIMPL SVR4 mincore
178115 STD SVR4 { caddr_t svr4_sys_mmap( caddr_t addr, svr4_size_t len, \
179 int prot, int flags, int fd, svr4_off_t pos); }
180116 NOPROTO SVR4 { int mprotect(void *addr, int len, int prot); }
181117 NOPROTO SVR4 { int munmap(void *addr, int len); }
182118 STD SVR4 { int svr4_sys_fpathconf(int fd, int name); }
183119 NOPROTO SVR4 { int vfork(void); }
184120 NOPROTO SVR4 { int fchdir(int fd); }
185121 NOPROTO SVR4 { int readv(int fd, struct iovec *iovp, \
186 u_int iovcnt); }
187122 NOPROTO SVR4 { int writev(int fd, struct iovec *iovp, \
188 u_int iovcnt); }
189123 STD SVR4 { int svr4_sys_xstat(int two, char *path, \
190 struct svr4_xstat *ub); }
191124 STD SVR4 { int svr4_sys_lxstat(int two, char *path, \
192 struct svr4_xstat *ub); }
193125 STD SVR4 { int svr4_sys_fxstat(int two, int fd, \
194 struct svr4_xstat *sb); }
195126 STD SVR4 { int svr4_sys_xmknod(int two, char *path, \
196 svr4_mode_t mode, svr4_dev_t dev); }
197127 UNIMPL SVR4 clocal
198128 STD SVR4 { int svr4_sys_setrlimit(int which, \
199 const struct svr4_rlimit *rlp); }
200129 STD SVR4 { int svr4_sys_getrlimit(int which, \
201 struct svr4_rlimit *rlp); }
202130 NOPROTO SVR4 { int lchown(char *path, uid_t uid, gid_t gid); }
203131 STD SVR4 { int svr4_sys_memcntl(void * addr, \
204 svr4_size_t len, int cmd, void * arg, \
205 int attr, int mask); }
206132 UNIMPL SVR4 getpmsg
207133 UNIMPL SVR4 putpmsg
208134 NOPROTO SVR4 { int rename(char *from, char *to); }
209135 STD SVR4 { int svr4_sys_uname(struct svr4_utsname* name, \
210 int dummy); }
211136 NOPROTO SVR4 { int setegid(gid_t egid); }
212137 STD SVR4 { int svr4_sys_sysconfig(int name); }
213138 NOPROTO SVR4 { int adjtime(struct timeval *delta, \
214 struct timeval *olddelta); }
215139 STD SVR4 { long svr4_sys_systeminfo(int what, char *buf, \
216 long len); }
217140 UNIMPL SVR4 notused
218141 NOPROTO SVR4 { int seteuid(uid_t euid); }
219142 UNIMPL SVR4 vtrace
220; fork1
221143 UNIMPL SVR4 { int fork(void); }
222144 UNIMPL SVR4 sigtimedwait
223145 UNIMPL SVR4 lwp_info
224146 UNIMPL SVR4 yield
225147 UNIMPL SVR4 lwp_sema_wait
226148 UNIMPL SVR4 lwp_sema_post
227149 UNIMPL SVR4 lwp_sema_trywait
228150 UNIMPL SVR4 notused
229151 UNIMPL SVR4 notused
230152 UNIMPL SVR4 modctl
231153 STD SVR4 { int svr4_sys_fchroot(int fd); }
232154 STD SVR4 { int svr4_sys_utimes(char *path, \
233 struct timeval *tptr); }
234155 STD SVR4 { int svr4_sys_vhangup(void); }
235156 STD SVR4 { int svr4_sys_gettimeofday(struct timeval *tp); }
236157 NOPROTO SVR4 { int getitimer(u_int which, struct itimerval *itv); }
237158 NOPROTO SVR4 { int setitimer(u_int which, struct itimerval *itv, \
238 struct itimerval *oitv); }
239159 UNIMPL SVR4 lwp_create
240160 UNIMPL SVR4 lwp_exit
241161 UNIMPL SVR4 lwp_suspend
242162 UNIMPL SVR4 lwp_continue
243163 UNIMPL SVR4 lwp_kill
244164 UNIMPL SVR4 lwp_self
245165 UNIMPL SVR4 lwp_getprivate
246166 UNIMPL SVR4 lwp_setprivate
247167 UNIMPL SVR4 lwp_wait
248168 UNIMPL SVR4 lwp_mutex_unlock
249169 UNIMPL SVR4 lwp_mutex_lock
250170 UNIMPL SVR4 lwp_cond_wait
251171 UNIMPL SVR4 lwp_cond_signal
252172 UNIMPL SVR4 lwp_cond_broadcast
253173 UNIMPL SVR4 { ssize_t svr4_sys_pread(int fd, void *buf, \
254 size_t nbyte, svr4_off_t off); }
255174 UNIMPL SVR4 { ssize_t svr4_sys_pwrite(int fd, const void *buf, \
256 size_t nbyte, svr4_off_t off); }
257175 STD SVR4 { svr4_off64_t svr4_sys_llseek(int fd, long offset1, \
258 long offset2, int whence); }
259176 UNIMPL SVR4 inst_sync
260177 UNIMPL SVR4 whoknows
261178 UNIMPL SVR4 kaio
262179 UNIMPL SVR4 whoknows
263180 UNIMPL SVR4 whoknows
264181 UNIMPL SVR4 whoknows
265182 UNIMPL SVR4 whoknows
266183 UNIMPL SVR4 whoknows
267184 UNIMPL SVR4 tsolsys
268185 STD SVR4 { int svr4_sys_acl(char *path, int cmd, int num, \
269 struct svr4_aclent *buf); }
270186 STD SVR4 { int svr4_sys_auditsys(int code, int a1, int a2, \
271 int a3, int a4, int a5); }
272187 UNIMPL SVR4 processor_bind
273188 UNIMPL SVR4 processor_info
274189 UNIMPL SVR4 p_online
275190 UNIMPL SVR4 sigqueue
276191 UNIMPL SVR4 clock_gettime
277192 UNIMPL SVR4 clock_settime
278193 UNIMPL SVR4 clock_getres
279194 UNIMPL SVR4 timer_create
280195 UNIMPL SVR4 timer_delete
281196 UNIMPL SVR4 timer_settime
282197 UNIMPL SVR4 timer_gettime
283198 UNIMPL SVR4 timer_overrun
284199 NOPROTO SVR4 { int nanosleep(const struct timespec *rqtp, \
285 struct timespec *rmtp); }
286200 STD SVR4 { int svr4_sys_facl(int fd, int cmd, int num, \
287 struct svr4_aclent *buf); }
288201 UNIMPL SVR4 door
289202 NOPROTO SVR4 { int setreuid(int ruid, int euid); }
290203 NOPROTO SVR4 { int setregid(int rgid, int egid); }
291204 UNIMPL SVR4 install_utrap
292205 UNIMPL SVR4 signotify
293206 UNIMPL SVR4 schedctl
294207 UNIMPL SVR4 pset
295208 UNIMPL SVR4 whoknows
296209 STD SVR4 { int svr4_sys_resolvepath(const char *path, \
297 char *buf, size_t bufsiz); }
298210 UNIMPL SVR4 signotifywait
299211 UNIMPL SVR4 lwp_sigredirect
300212 UNIMPL SVR4 lwp_alarm
301213 STD SVR4 { int svr4_sys_getdents64(int fd, \
302 struct svr4_dirent64 *dp, \
303 int nbytes); }
304;213 UNIMPL SVR4 getdents64
305214 STD SVR4 { caddr_t svr4_sys_mmap64(void *addr, \
306 svr4_size_t len, int prot, int flags, int fd, \
307 svr4_off64_t pos); }
308215 STD SVR4 { int svr4_sys_stat64(char *path, \
309 struct svr4_stat64 *sb); }
310216 STD SVR4 { int svr4_sys_lstat64(char *path, \
311 struct svr4_stat64 *sb); }
312217 STD SVR4 { int svr4_sys_fstat64(int fd, \
313 struct svr4_stat64 *sb); }
314218 STD SVR4 { int svr4_sys_statvfs64(char *path, \
315 struct svr4_statvfs64 *fs); }
316219 STD SVR4 { int svr4_sys_fstatvfs64(int fd, \
317 struct svr4_statvfs64 *fs); }
318220 STD SVR4 { int svr4_sys_setrlimit64(int which, \
319 const struct svr4_rlimit64 *rlp); }
320221 STD SVR4 { int svr4_sys_getrlimit64(int which, \
321 struct svr4_rlimit64 *rlp); }
322222 UNIMPL SVR4 pread64
323223 UNIMPL SVR4 pwrite64
324224 STD SVR4 { int svr4_sys_creat64(char *path, int mode); }
325225 STD SVR4 { int svr4_sys_open64(char *path, int flags, \
326 int mode); }
327226 UNIMPL SVR4 rpcsys
328227 UNIMPL SVR4 whoknows
329228 UNIMPL SVR4 whoknows
330229 UNIMPL SVR4 whoknows
331230 STD SVR4 { int svr4_sys_socket(int domain, int type, \
332 int protocol); }
333231 NOPROTO SVR4 { int socketpair(int domain, int type, \
334 int protocol, int *rsv); }
335232 NOPROTO SVR4 { int bind(int s, const struct sockaddr *name, \
336 int namelen); }
337233 NOPROTO SVR4 { int listen(int s, int backlog); }
338234 NOPROTO SVR4 { int accept(int s, struct sockaddr *name, \
339 int *anamelen); }
340235 NOPROTO SVR4 { int connect(int s, const struct sockaddr *name, \
341 int namelen); }
342236 NOPROTO SVR4 { int shutdown(int s, int how); }
343237 STD SVR4 { int svr4_sys_recv(int s, caddr_t buf, int len, int flags); }
344238 NOPROTO SVR4 { ssize_t recvfrom(int s, void *buf, size_t len, \
345 int flags, struct sockaddr *from, \
346 int *fromlenaddr); }
347239 NOPROTO SVR4 { ssize_t recvmsg(int s, struct msghdr *msg, \
348 int flags); }
349240 STD SVR4 { int svr4_sys_send(int s, caddr_t buf, int len, int flags); }
350241 NOPROTO SVR4 { ssize_t sendmsg(int s, const struct msghdr *msg, \
351 int flags); }
352242 STD SVR4 { ssize_t svr4_sys_sendto(int s, void *buf, \
353 size_t len, int flags, \
354 struct sockaddr *to, int tolen); }
355243 NOPROTO SVR4 { int getpeername(int fdes, struct sockaddr *asa, \
356 int *alen); }
357244 NOPROTO SVR4 { int getsockname(int fdes, struct sockaddr *asa, \
358 int *alen); }
359245 NOPROTO SVR4 { int getsockopt(int s, int level, int name, \
360 void *val, int *avalsize); }
361246 NOPROTO SVR4 { int setsockopt(int s, int level, int name, \
362 const void *val, int valsize); }
363247 UNIMPL SVR4 sockconfig
364248 UNIMPL SVR4 { int ntp_gettime(struct ntptimeval *ntvp); }
365249 UNIMPL SVR4 { int ntp_adjtime(struct timex *tp); }
31#include <svr4/svr4_types.h>
32#include <svr4/svr4_signal.h>
33#include <svr4/svr4_proto.h>
34
35; #ifdef's, etc. may be included, and are copied to the output files.
36
370 UNIMPL SVR4 unused
381 NOPROTO POSIX { int exit(int rval); }
392 NOPROTO POSIX { int fork(void); }
403 NOPROTO POSIX { int read(int fd, char *buf, u_int nbyte); }
414 NOPROTO SVR4 { int write(int fd, char *buf, u_int nbyte); }
425 STD SVR4 { int svr4_sys_open(char *path, int flags, int mode); }
436 NOPROTO SVR4 { int close(int fd); }
447 STD SVR4 { int svr4_sys_wait(int *status); }
458 STD SVR4 { int svr4_sys_creat(char *path, int mode); }
469 NOPROTO SVR4 { int link(char *path, char *link); }
4710 NOPROTO SVR4 { int unlink(char *path); }
4811 STD SVR4 { int svr4_sys_execv(char *path, char **argp); }
4912 NOPROTO SVR4 { int chdir(char *path); }
5013 STD SVR4 { int svr4_sys_time(time_t *t); }
5114 STD SVR4 { int svr4_sys_mknod(char* path, int mode, int dev); }
5215 NOPROTO SVR4 { int chmod(char *path, int mode); }
5316 NOPROTO SVR4 { int chown(char *path, uid_t uid, gid_t gid); }
5417 STD SVR4 { int svr4_sys_break(caddr_t nsize); }
5518 STD SVR4 { int svr4_sys_stat(char* path, \
56 struct svr4_stat* ub); }
5719 NOPROTO SVR4 { int lseek(int filedes, off_t *offset, int whence); }
5820 NOPROTO SVR4 { pid_t getpid(void); }
5921 UNIMPL SVR4 old_mount
6022 UNIMPL SVR4 sysv_umount
6123 NOPROTO SVR4 { int setuid(uid_t uid); }
6224 NOPROTO SVR4 { uid_t getuid(void); }
6325 UNIMPL SVR4 stime
6426 UNIMPL SVR4 ptrace
6527 STD SVR4 { int svr4_sys_alarm(unsigned sec); }
6628 STD SVR4 { int svr4_sys_fstat(int fd, struct svr4_stat *sb); }
6729 STD SVR4 { int svr4_sys_pause(void); }
6830 STD SVR4 { int svr4_sys_utime(char *path, \
69 struct svr4_utimbuf *ubuf); }
7031 UNIMPL SVR4 stty
7132 UNIMPL SVR4 gtty
7233 STD SVR4 { int svr4_sys_access(char *path, int flags); }
7334 STD SVR4 { int svr4_sys_nice(int prio); }
7435 UNIMPL SVR4 statfs
7536 NOPROTO SVR4 { int sync(void); }
7637 STD SVR4 { int svr4_sys_kill(int pid, int signum); }
7738 UNIMPL SVR4 fstatfs
7839 STD SVR4 { int svr4_sys_pgrpsys(int cmd, int pid, int pgid); }
7940 UNIMPL SVR4 xenix
8041 NOPROTO SVR4 { int dup(u_int fd); }
8142 NOPROTO SVR4 { int pipe(void); }
8243 STD SVR4 { int svr4_sys_times(struct tms *tp); }
8344 UNIMPL SVR4 profil
8445 UNIMPL SVR4 plock
8546 NOPROTO SVR4 { int setgid(gid_t gid); }
8647 NOPROTO SVR4 { gid_t getgid(void); }
8748 STD SVR4 { int svr4_sys_signal(int signum, \
88 svr4_sig_t handler); }
89#if defined(NOTYET)
9049 STD SVR4 { int svr4_sys_msgsys(int what, int a2, int a3, \
91 int a4, int a5); }
92#else
9349 UNIMPL SVR4 msgsys
94#endif
9550 STD SVR4 { int svr4_sys_sysarch(int op, void *a1); }
9651 UNIMPL SVR4 acct
9752 UNIMPL SVR4 shmsys
9853 UNIMPL SVR4 semsys
9954 STD SVR4 { int svr4_sys_ioctl(int fd, u_long com, \
100 caddr_t data); }
10155 UNIMPL SVR4 uadmin
10256 UNIMPL SVR4 exch
10357 STD SVR4 { int svr4_sys_utssys(void *a1, void *a2, int sel, \
104 void *a3); }
10558 NOPROTO SVR4 { int fsync(int fd); }
10659 STD SVR4 { int svr4_sys_execve(char *path, char **argp, \
107 char **envp); }
10860 NOPROTO SVR4 { int umask(int newmask); }
10961 NOPROTO SVR4 { int chroot(char *path); }
11062 STD SVR4 { int svr4_sys_fcntl(int fd, int cmd, char *arg); }
11163 STD SVR4 { int svr4_sys_ulimit(int cmd, long newlimit); }
11264 UNIMPL SVR4 reserved
11365 UNIMPL SVR4 reserved
11466 UNIMPL SVR4 reserved
11567 UNIMPL SVR4 reserved
11668 UNIMPL SVR4 reserved
11769 UNIMPL SVR4 reserved
11870 UNIMPL SVR4 advfs
11971 UNIMPL SVR4 unadvfs
12072 UNIMPL SVR4 rmount
12173 UNIMPL SVR4 rumount
12274 UNIMPL SVR4 rfstart
12375 UNIMPL SVR4 sigret
12476 UNIMPL SVR4 rdebug
12577 UNIMPL SVR4 rfstop
12678 UNIMPL SVR4 rfsys
12779 NOPROTO SVR4 { int rmdir(char *path); }
12880 NOPROTO SVR4 { int mkdir(char *path, int mode); }
12981 STD SVR4 { int svr4_sys_getdents(int fd, char *buf, \
130 int nbytes); }
13182 UNIMPL SVR4 libattach
13283 UNIMPL SVR4 libdetach
13384 UNIMPL SVR4 sysfs
13485 STD SVR4 { int svr4_sys_getmsg(int fd, struct svr4_strbuf *ctl, \
135 struct svr4_strbuf *dat, int *flags); }
13686 STD SVR4 { int svr4_sys_putmsg(int fd, struct svr4_strbuf *ctl, \
137 struct svr4_strbuf *dat, int flags); }
13887 STD SVR4 { int svr4_sys_poll(struct pollfd *fds, unsigned int nfds, \
139 int timeout); }
14088 STD SVR4 { int svr4_sys_lstat(char *path, \
141 struct svr4_stat *ub); }
14289 NOPROTO SVR4 { int symlink(char *path, char *link); }
14390 NOPROTO SVR4 { int readlink(char *path, char *buf, int count); }
14491 NOPROTO SVR4 { int getgroups(u_int gidsetsize, gid_t *gidset); }
14592 NOPROTO SVR4 { int setgroups(u_int gidsetsize, gid_t *gidset); }
14693 NOPROTO SVR4 { int fchmod(int fd, int mode); }
14794 NOPROTO SVR4 { int fchown(int fd, int uid, int gid); }
14895 STD SVR4 { int svr4_sys_sigprocmask(int how, \
149 svr4_sigset_t *set, svr4_sigset_t *oset); }
15096 STD SVR4 { int svr4_sys_sigsuspend(svr4_sigset_t *ss); }
15197 STD SVR4 { int svr4_sys_sigaltstack( \
152 struct svr4_sigaltstack *nss, \
153 struct svr4_sigaltstack *oss); }
15498 STD SVR4 { int svr4_sys_sigaction(int signum, \
155 struct svr4_sigaction *nsa, \
156 struct svr4_sigaction *osa); }
15799 STD SVR4 { int svr4_sys_sigpending(int what, \
158 svr4_sigset_t *mask); }
159100 STD SVR4 { int svr4_sys_context(int func, \
160 struct svr4_ucontext *uc); }
161101 UNIMPL SVR4 evsys
162102 UNIMPL SVR4 evtrapret
163103 STD SVR4 { int svr4_sys_statvfs(char *path, \
164 struct svr4_statvfs *fs); }
165104 STD SVR4 { int svr4_sys_fstatvfs(int fd, \
166 struct svr4_statvfs *fs); }
167105 UNIMPL SVR4 whoknows
168106 UNIMPL SVR4 nfssvc
169107 STD SVR4 { int svr4_sys_waitsys(int grp, int id, \
170 union svr4_siginfo *info, int options); }
171108 UNIMPL SVR4 sigsendsys
172109 STD SVR4 { int svr4_sys_hrtsys(int cmd, int fun, int sub, \
173 void *rv1, void *rv2); }
174110 UNIMPL SVR4 acancel
175111 UNIMPL SVR4 async
176112 UNIMPL SVR4 priocntlsys
177113 STD SVR4 { int svr4_sys_pathconf(char *path, int name); }
178114 UNIMPL SVR4 mincore
179115 STD SVR4 { caddr_t svr4_sys_mmap( caddr_t addr, svr4_size_t len, \
180 int prot, int flags, int fd, svr4_off_t pos); }
181116 NOPROTO SVR4 { int mprotect(void *addr, int len, int prot); }
182117 NOPROTO SVR4 { int munmap(void *addr, int len); }
183118 STD SVR4 { int svr4_sys_fpathconf(int fd, int name); }
184119 NOPROTO SVR4 { int vfork(void); }
185120 NOPROTO SVR4 { int fchdir(int fd); }
186121 NOPROTO SVR4 { int readv(int fd, struct iovec *iovp, \
187 u_int iovcnt); }
188122 NOPROTO SVR4 { int writev(int fd, struct iovec *iovp, \
189 u_int iovcnt); }
190123 STD SVR4 { int svr4_sys_xstat(int two, char *path, \
191 struct svr4_xstat *ub); }
192124 STD SVR4 { int svr4_sys_lxstat(int two, char *path, \
193 struct svr4_xstat *ub); }
194125 STD SVR4 { int svr4_sys_fxstat(int two, int fd, \
195 struct svr4_xstat *sb); }
196126 STD SVR4 { int svr4_sys_xmknod(int two, char *path, \
197 svr4_mode_t mode, svr4_dev_t dev); }
198127 UNIMPL SVR4 clocal
199128 STD SVR4 { int svr4_sys_setrlimit(int which, \
200 const struct svr4_rlimit *rlp); }
201129 STD SVR4 { int svr4_sys_getrlimit(int which, \
202 struct svr4_rlimit *rlp); }
203130 NOPROTO SVR4 { int lchown(char *path, uid_t uid, gid_t gid); }
204131 STD SVR4 { int svr4_sys_memcntl(void * addr, \
205 svr4_size_t len, int cmd, void * arg, \
206 int attr, int mask); }
207132 UNIMPL SVR4 getpmsg
208133 UNIMPL SVR4 putpmsg
209134 NOPROTO SVR4 { int rename(char *from, char *to); }
210135 STD SVR4 { int svr4_sys_uname(struct svr4_utsname* name, \
211 int dummy); }
212136 NOPROTO SVR4 { int setegid(gid_t egid); }
213137 STD SVR4 { int svr4_sys_sysconfig(int name); }
214138 NOPROTO SVR4 { int adjtime(struct timeval *delta, \
215 struct timeval *olddelta); }
216139 STD SVR4 { long svr4_sys_systeminfo(int what, char *buf, \
217 long len); }
218140 UNIMPL SVR4 notused
219141 NOPROTO SVR4 { int seteuid(uid_t euid); }
220142 UNIMPL SVR4 vtrace
221; fork1
222143 UNIMPL SVR4 { int fork(void); }
223144 UNIMPL SVR4 sigtimedwait
224145 UNIMPL SVR4 lwp_info
225146 UNIMPL SVR4 yield
226147 UNIMPL SVR4 lwp_sema_wait
227148 UNIMPL SVR4 lwp_sema_post
228149 UNIMPL SVR4 lwp_sema_trywait
229150 UNIMPL SVR4 notused
230151 UNIMPL SVR4 notused
231152 UNIMPL SVR4 modctl
232153 STD SVR4 { int svr4_sys_fchroot(int fd); }
233154 STD SVR4 { int svr4_sys_utimes(char *path, \
234 struct timeval *tptr); }
235155 STD SVR4 { int svr4_sys_vhangup(void); }
236156 STD SVR4 { int svr4_sys_gettimeofday(struct timeval *tp); }
237157 NOPROTO SVR4 { int getitimer(u_int which, struct itimerval *itv); }
238158 NOPROTO SVR4 { int setitimer(u_int which, struct itimerval *itv, \
239 struct itimerval *oitv); }
240159 UNIMPL SVR4 lwp_create
241160 UNIMPL SVR4 lwp_exit
242161 UNIMPL SVR4 lwp_suspend
243162 UNIMPL SVR4 lwp_continue
244163 UNIMPL SVR4 lwp_kill
245164 UNIMPL SVR4 lwp_self
246165 UNIMPL SVR4 lwp_getprivate
247166 UNIMPL SVR4 lwp_setprivate
248167 UNIMPL SVR4 lwp_wait
249168 UNIMPL SVR4 lwp_mutex_unlock
250169 UNIMPL SVR4 lwp_mutex_lock
251170 UNIMPL SVR4 lwp_cond_wait
252171 UNIMPL SVR4 lwp_cond_signal
253172 UNIMPL SVR4 lwp_cond_broadcast
254173 UNIMPL SVR4 { ssize_t svr4_sys_pread(int fd, void *buf, \
255 size_t nbyte, svr4_off_t off); }
256174 UNIMPL SVR4 { ssize_t svr4_sys_pwrite(int fd, const void *buf, \
257 size_t nbyte, svr4_off_t off); }
258175 STD SVR4 { svr4_off64_t svr4_sys_llseek(int fd, long offset1, \
259 long offset2, int whence); }
260176 UNIMPL SVR4 inst_sync
261177 UNIMPL SVR4 whoknows
262178 UNIMPL SVR4 kaio
263179 UNIMPL SVR4 whoknows
264180 UNIMPL SVR4 whoknows
265181 UNIMPL SVR4 whoknows
266182 UNIMPL SVR4 whoknows
267183 UNIMPL SVR4 whoknows
268184 UNIMPL SVR4 tsolsys
269185 STD SVR4 { int svr4_sys_acl(char *path, int cmd, int num, \
270 struct svr4_aclent *buf); }
271186 STD SVR4 { int svr4_sys_auditsys(int code, int a1, int a2, \
272 int a3, int a4, int a5); }
273187 UNIMPL SVR4 processor_bind
274188 UNIMPL SVR4 processor_info
275189 UNIMPL SVR4 p_online
276190 UNIMPL SVR4 sigqueue
277191 UNIMPL SVR4 clock_gettime
278192 UNIMPL SVR4 clock_settime
279193 UNIMPL SVR4 clock_getres
280194 UNIMPL SVR4 timer_create
281195 UNIMPL SVR4 timer_delete
282196 UNIMPL SVR4 timer_settime
283197 UNIMPL SVR4 timer_gettime
284198 UNIMPL SVR4 timer_overrun
285199 NOPROTO SVR4 { int nanosleep(const struct timespec *rqtp, \
286 struct timespec *rmtp); }
287200 STD SVR4 { int svr4_sys_facl(int fd, int cmd, int num, \
288 struct svr4_aclent *buf); }
289201 UNIMPL SVR4 door
290202 NOPROTO SVR4 { int setreuid(int ruid, int euid); }
291203 NOPROTO SVR4 { int setregid(int rgid, int egid); }
292204 UNIMPL SVR4 install_utrap
293205 UNIMPL SVR4 signotify
294206 UNIMPL SVR4 schedctl
295207 UNIMPL SVR4 pset
296208 UNIMPL SVR4 whoknows
297209 STD SVR4 { int svr4_sys_resolvepath(const char *path, \
298 char *buf, size_t bufsiz); }
299210 UNIMPL SVR4 signotifywait
300211 UNIMPL SVR4 lwp_sigredirect
301212 UNIMPL SVR4 lwp_alarm
302213 STD SVR4 { int svr4_sys_getdents64(int fd, \
303 struct svr4_dirent64 *dp, \
304 int nbytes); }
305;213 UNIMPL SVR4 getdents64
306214 STD SVR4 { caddr_t svr4_sys_mmap64(void *addr, \
307 svr4_size_t len, int prot, int flags, int fd, \
308 svr4_off64_t pos); }
309215 STD SVR4 { int svr4_sys_stat64(char *path, \
310 struct svr4_stat64 *sb); }
311216 STD SVR4 { int svr4_sys_lstat64(char *path, \
312 struct svr4_stat64 *sb); }
313217 STD SVR4 { int svr4_sys_fstat64(int fd, \
314 struct svr4_stat64 *sb); }
315218 STD SVR4 { int svr4_sys_statvfs64(char *path, \
316 struct svr4_statvfs64 *fs); }
317219 STD SVR4 { int svr4_sys_fstatvfs64(int fd, \
318 struct svr4_statvfs64 *fs); }
319220 STD SVR4 { int svr4_sys_setrlimit64(int which, \
320 const struct svr4_rlimit64 *rlp); }
321221 STD SVR4 { int svr4_sys_getrlimit64(int which, \
322 struct svr4_rlimit64 *rlp); }
323222 UNIMPL SVR4 pread64
324223 UNIMPL SVR4 pwrite64
325224 STD SVR4 { int svr4_sys_creat64(char *path, int mode); }
326225 STD SVR4 { int svr4_sys_open64(char *path, int flags, \
327 int mode); }
328226 UNIMPL SVR4 rpcsys
329227 UNIMPL SVR4 whoknows
330228 UNIMPL SVR4 whoknows
331229 UNIMPL SVR4 whoknows
332230 STD SVR4 { int svr4_sys_socket(int domain, int type, \
333 int protocol); }
334231 NOPROTO SVR4 { int socketpair(int domain, int type, \
335 int protocol, int *rsv); }
336232 NOPROTO SVR4 { int bind(int s, const struct sockaddr *name, \
337 int namelen); }
338233 NOPROTO SVR4 { int listen(int s, int backlog); }
339234 NOPROTO SVR4 { int accept(int s, struct sockaddr *name, \
340 int *anamelen); }
341235 NOPROTO SVR4 { int connect(int s, const struct sockaddr *name, \
342 int namelen); }
343236 NOPROTO SVR4 { int shutdown(int s, int how); }
344237 STD SVR4 { int svr4_sys_recv(int s, caddr_t buf, int len, int flags); }
345238 NOPROTO SVR4 { ssize_t recvfrom(int s, void *buf, size_t len, \
346 int flags, struct sockaddr *from, \
347 int *fromlenaddr); }
348239 NOPROTO SVR4 { ssize_t recvmsg(int s, struct msghdr *msg, \
349 int flags); }
350240 STD SVR4 { int svr4_sys_send(int s, caddr_t buf, int len, int flags); }
351241 NOPROTO SVR4 { ssize_t sendmsg(int s, const struct msghdr *msg, \
352 int flags); }
353242 STD SVR4 { ssize_t svr4_sys_sendto(int s, void *buf, \
354 size_t len, int flags, \
355 struct sockaddr *to, int tolen); }
356243 NOPROTO SVR4 { int getpeername(int fdes, struct sockaddr *asa, \
357 int *alen); }
358244 NOPROTO SVR4 { int getsockname(int fdes, struct sockaddr *asa, \
359 int *alen); }
360245 NOPROTO SVR4 { int getsockopt(int s, int level, int name, \
361 void *val, int *avalsize); }
362246 NOPROTO SVR4 { int setsockopt(int s, int level, int name, \
363 const void *val, int valsize); }
364247 UNIMPL SVR4 sockconfig
365248 UNIMPL SVR4 { int ntp_gettime(struct ntptimeval *ntvp); }
366249 UNIMPL SVR4 { int ntp_adjtime(struct timex *tp); }