2000-12-09 10:10:34 +03:00
|
|
|
$NetBSD: syscalls.master,v 1.34 2000/12/09 07:10:36 mycroft Exp $
|
1995-02-14 00:39:00 +03:00
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
|
|
|
|
|
|
|
; NetBSD COMPAT_OSF1 system call name/number "master" file.
|
1995-02-14 00:39:00 +03:00
|
|
|
; (See syscalls.conf to see what it is processed into.)
|
|
|
|
;
|
|
|
|
; Fields: number type [type-dependent ...]
|
|
|
|
; number system call number, must be in order
|
|
|
|
; type one of STD, OBSOL, UNIMPL, NODEF, NOARGS, or one of
|
1995-10-07 09:25:19 +03:00
|
|
|
; the compatibility options defined in syscalls.conf.
|
1995-02-14 00:39:00 +03:00
|
|
|
;
|
|
|
|
; types:
|
|
|
|
; STD always included
|
|
|
|
; OBSOL obsolete, not included in system
|
1995-10-07 09:25:19 +03:00
|
|
|
; UNIMPL unimplemented, not included in system
|
1995-02-14 00:39:00 +03:00
|
|
|
; NODEF included, but don't define the syscall number
|
|
|
|
; NOARGS included, but don't define the syscall args structure
|
|
|
|
;
|
|
|
|
; The compat options are defined in the syscalls.conf file, and the
|
|
|
|
; compat option name is prefixed to the syscall name. Other than
|
|
|
|
; that, they're like NODEF (for 'compat' options), or STD (for
|
|
|
|
; 'libcompat' options).
|
|
|
|
;
|
|
|
|
; The type-dependent arguments are as follows:
|
|
|
|
; For STD, NODEF, NOARGS, and compat syscalls:
|
|
|
|
; { pseudo-proto } [alias]
|
|
|
|
; For other syscalls:
|
|
|
|
; [comment]
|
|
|
|
;
|
|
|
|
; #ifdef's, etc. may be included, and are copied to the output files.
|
1998-02-19 03:42:15 +03:00
|
|
|
; #include's are copied to the syscall names and switch definition files only.
|
1995-02-14 00:39:00 +03:00
|
|
|
|
2000-12-09 08:27:28 +03:00
|
|
|
#if defined(_KERNEL) && !defined(_LKM)
|
1998-12-10 20:03:19 +03:00
|
|
|
#include "opt_compat_43.h"
|
2000-12-09 08:27:28 +03:00
|
|
|
#endif
|
1998-12-10 20:03:19 +03:00
|
|
|
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/mount.h>
|
1996-09-07 16:40:22 +04:00
|
|
|
#include <sys/poll.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <sys/syscallargs.h>
|
1996-09-07 16:40:22 +04:00
|
|
|
|
1999-05-04 08:59:21 +04:00
|
|
|
#include <compat/osf1/osf1.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <compat/osf1/osf1_syscallargs.h>
|
|
|
|
|
2000-12-09 08:27:28 +03:00
|
|
|
%%
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
0 NOARGS { int sys_nosys(void); } syscall
|
|
|
|
1 NOARGS { int sys_exit(int rval); }
|
|
|
|
2 NOARGS { int sys_fork(void); }
|
|
|
|
3 NOARGS { int sys_read(int fd, char *buf, u_int nbyte); }
|
1999-04-23 10:19:51 +04:00
|
|
|
4 NOARGS { int sys_write(int fd, const char *buf, \
|
|
|
|
u_int nbyte); }
|
1995-02-14 00:39:00 +03:00
|
|
|
5 UNIMPL old open
|
1995-10-07 09:25:19 +03:00
|
|
|
6 NOARGS { int sys_close(int fd); }
|
1999-04-30 08:33:51 +04:00
|
|
|
7 STD { int osf1_sys_wait4(int pid, int *status, \
|
|
|
|
int options, struct osf1_rusage *rusage); }
|
1995-02-14 00:39:00 +03:00
|
|
|
8 UNIMPL old creat
|
1999-04-23 10:19:51 +04:00
|
|
|
9 NOARGS { int sys_link(const char *path, const char *link); }
|
|
|
|
10 NOARGS { int sys_unlink(const char *path); }
|
1995-02-14 00:39:00 +03:00
|
|
|
11 UNIMPL execv
|
1999-04-23 10:19:51 +04:00
|
|
|
12 NOARGS { int sys_chdir(const char *path); }
|
1995-10-07 09:25:19 +03:00
|
|
|
13 NOARGS { int sys_fchdir(int fd); }
|
1999-04-23 10:19:51 +04:00
|
|
|
14 STD { int osf1_sys_mknod(const char *path, int mode, \
|
|
|
|
int dev); }
|
|
|
|
15 NOARGS { int sys_chmod(const char *path, int mode); }
|
|
|
|
16 NOARGS { int sys___posix_chown(const char *path, int uid, \
|
|
|
|
int gid); }
|
1995-10-07 09:25:19 +03:00
|
|
|
17 NOARGS { int sys_obreak(char *nsize); }
|
|
|
|
18 STD { int osf1_sys_getfsstat(struct osf1_statfs *buf, \
|
1995-02-14 00:39:00 +03:00
|
|
|
long bufsize, int flags); }
|
1995-10-07 09:25:19 +03:00
|
|
|
19 STD { off_t osf1_sys_lseek(int fd, off_t offset, \
|
|
|
|
int whence); }
|
2000-12-09 10:10:34 +03:00
|
|
|
20 NOARGS { pid_t sys_getpid_with_ppid(void); }
|
1999-04-23 10:19:51 +04:00
|
|
|
21 STD { int osf1_sys_mount(int type, const char *path, \
|
|
|
|
int flags, caddr_t data); }
|
|
|
|
22 STD { int osf1_sys_unmount(const char *path, int flags); }
|
1995-10-07 09:25:19 +03:00
|
|
|
23 STD { int osf1_sys_setuid(uid_t uid); }
|
2000-12-09 10:10:34 +03:00
|
|
|
24 NOARGS { uid_t sys_getuid_with_euid(void); }
|
1995-02-14 00:39:00 +03:00
|
|
|
25 UNIMPL exec_with_loader
|
|
|
|
26 UNIMPL ptrace
|
1999-05-10 09:58:44 +04:00
|
|
|
27 STD { int osf1_sys_recvmsg_xopen(int s, \
|
|
|
|
struct osf1_msghdr_xopen *msg, int flags); }
|
|
|
|
28 STD { int osf1_sys_sendmsg_xopen(int s, \
|
|
|
|
const struct osf1_msghdr_xopen *msg, int flags); }
|
1995-02-14 00:39:00 +03:00
|
|
|
29 UNIMPL recvfrom
|
|
|
|
30 UNIMPL accept
|
|
|
|
31 UNIMPL getpeername
|
|
|
|
32 UNIMPL getsockname
|
1999-04-29 06:10:07 +04:00
|
|
|
33 STD { int osf1_sys_access(const char *path, int flags); }
|
1995-02-14 00:39:00 +03:00
|
|
|
34 UNIMPL chflags
|
|
|
|
35 UNIMPL fchflags
|
1995-10-07 09:25:19 +03:00
|
|
|
36 NOARGS { int sys_sync(void); }
|
|
|
|
37 NOARGS { int sys_kill(int pid, int signum); }
|
1995-02-14 00:39:00 +03:00
|
|
|
38 UNIMPL old stat
|
1995-10-07 09:25:19 +03:00
|
|
|
39 NOARGS { int sys_setpgid(int pid, int pgid); }
|
1995-02-14 00:39:00 +03:00
|
|
|
40 UNIMPL old lstat
|
1995-10-07 09:25:19 +03:00
|
|
|
41 NOARGS { int sys_dup(u_int fd); }
|
|
|
|
42 NOARGS { int sys_pipe(void); }
|
1999-04-29 21:19:47 +04:00
|
|
|
43 STD { int osf1_sys_set_program_attributes( \
|
|
|
|
caddr_t taddr, unsigned long tsize, \
|
|
|
|
caddr_t daddr, unsigned long dsize); }
|
1995-02-14 00:39:00 +03:00
|
|
|
44 UNIMPL profil
|
1999-04-23 10:19:51 +04:00
|
|
|
45 STD { int osf1_sys_open(const char *path, int flags, \
|
|
|
|
int mode); }
|
1995-02-14 00:39:00 +03:00
|
|
|
46 OBSOL sigaction
|
2000-12-09 10:10:34 +03:00
|
|
|
47 NOARGS { gid_t sys_getgid_with_egid(void); }
|
1999-04-30 02:08:49 +04:00
|
|
|
; XXX
|
1999-02-09 23:34:16 +03:00
|
|
|
48 NOARGS { int compat_13_sys_sigprocmask(int how, \
|
|
|
|
sigset13_t mask); }
|
1998-05-20 20:34:29 +04:00
|
|
|
49 NOARGS { int sys___getlogin(char *namebuf, u_int namelen); }
|
1999-04-23 10:19:51 +04:00
|
|
|
50 NOARGS { int sys_setlogin(const char *namebuf); }
|
|
|
|
51 NOARGS { int sys_acct(const char *path); }
|
1995-02-14 00:39:00 +03:00
|
|
|
52 UNIMPL sigpending
|
1999-05-04 09:17:22 +04:00
|
|
|
53 STD { int osf1_sys_classcntl(int opcode, int arg1, \
|
|
|
|
int arg2, int arg3); }
|
1995-10-07 09:25:19 +03:00
|
|
|
54 STD { int osf1_sys_ioctl(int fd, int com, caddr_t data); }
|
|
|
|
55 STD { int osf1_sys_reboot(int opt); }
|
1999-04-23 10:19:51 +04:00
|
|
|
56 NOARGS { int sys_revoke(const char *path); }
|
|
|
|
57 NOARGS { int sys_symlink(const char *path, \
|
|
|
|
const char *link); }
|
|
|
|
58 NOARGS { int sys_readlink(const char *path, char *buf, \
|
|
|
|
int count); }
|
|
|
|
59 STD { int osf1_sys_execve(const char *path, \
|
|
|
|
char * const *argp, char * const *envp); }
|
1995-10-07 09:25:19 +03:00
|
|
|
60 NOARGS { int sys_umask(int newmask); }
|
1999-04-23 10:19:51 +04:00
|
|
|
61 NOARGS { int sys_chroot(const char *path); }
|
1995-02-14 00:39:00 +03:00
|
|
|
62 UNIMPL old fstat
|
1995-10-07 09:25:19 +03:00
|
|
|
63 NOARGS { int sys_getpgrp(void); }
|
|
|
|
64 NOARGS { int compat_43_sys_getpagesize(void); }
|
1995-02-14 00:39:00 +03:00
|
|
|
65 UNIMPL mremap
|
1995-10-07 09:25:19 +03:00
|
|
|
66 NOARGS { int sys_vfork(void); }
|
1999-04-23 10:19:51 +04:00
|
|
|
67 STD { int osf1_sys_stat(const char *path, \
|
|
|
|
struct osf1_stat *ub); }
|
|
|
|
68 STD { int osf1_sys_lstat(const char *path, \
|
1995-10-07 09:25:19 +03:00
|
|
|
struct osf1_stat *ub); }
|
1995-02-14 00:39:00 +03:00
|
|
|
69 UNIMPL sbrk
|
|
|
|
70 UNIMPL sstk
|
1995-10-07 09:25:19 +03:00
|
|
|
71 STD { caddr_t osf1_sys_mmap(caddr_t addr, size_t len, \
|
1995-02-14 00:39:00 +03:00
|
|
|
int prot, int flags, int fd, off_t pos); }
|
|
|
|
72 UNIMPL ovadvise
|
1995-10-07 09:25:19 +03:00
|
|
|
73 NOARGS { int sys_munmap(caddr_t addr, size_t len); }
|
1999-04-29 06:10:07 +04:00
|
|
|
74 STD { int osf1_sys_mprotect(void *addr, size_t len, \
|
|
|
|
int prot); }
|
1999-04-27 22:40:53 +04:00
|
|
|
75 STD { int osf1_sys_madvise(void *addr, size_t len, \
|
|
|
|
int behav); }
|
1995-02-14 00:39:00 +03:00
|
|
|
76 UNIMPL old vhangup
|
|
|
|
77 UNIMPL kmodcall
|
|
|
|
78 UNIMPL mincore
|
1995-10-07 09:25:19 +03:00
|
|
|
79 NOARGS { int sys_getgroups(u_int gidsetsize, gid_t *gidset); }
|
|
|
|
80 NOARGS { int sys_setgroups(u_int gidsetsize, gid_t *gidset); }
|
1995-02-14 00:39:00 +03:00
|
|
|
81 UNIMPL old getpgrp
|
|
|
|
; OSF/1 setpgrp(); identical in function to setpgid(). XXX
|
1995-10-07 09:25:19 +03:00
|
|
|
82 NOARGS { int sys_setpgid(int pid, int pgid); } setpgrp
|
1999-04-30 02:08:49 +04:00
|
|
|
83 STD { int osf1_sys_setitimer(u_int which, \
|
|
|
|
struct osf1_itimerval *itv, \
|
|
|
|
struct osf1_itimerval *oitv); }
|
1995-02-14 00:39:00 +03:00
|
|
|
84 UNIMPL old wait
|
|
|
|
85 UNIMPL table
|
|
|
|
86 UNIMPL getitimer
|
1995-10-07 09:25:19 +03:00
|
|
|
87 NOARGS { int compat_43_sys_gethostname(char *hostname, \
|
1995-02-14 00:39:00 +03:00
|
|
|
u_int len); }
|
1999-04-23 10:19:51 +04:00
|
|
|
88 NOARGS { int compat_43_sys_sethostname(const char *hostname, \
|
1995-02-14 00:39:00 +03:00
|
|
|
u_int len); }
|
1995-10-07 09:25:19 +03:00
|
|
|
89 NOARGS { int compat_43_sys_getdtablesize(void); }
|
|
|
|
90 NOARGS { int sys_dup2(u_int from, u_int to); }
|
|
|
|
91 STD { int osf1_sys_fstat(int fd, void *sb); }
|
|
|
|
92 STD { int osf1_sys_fcntl(int fd, int cmd, void *arg); }
|
1999-04-28 06:34:25 +04:00
|
|
|
93 STD { int osf1_sys_select(u_int nd, fd_set *in, \
|
1999-04-28 09:09:47 +04:00
|
|
|
fd_set *ou, fd_set *ex, struct osf1_timeval *tv); }
|
1999-04-30 02:08:49 +04:00
|
|
|
; maybe XXX
|
1996-09-07 18:20:09 +04:00
|
|
|
94 NOARGS { int sys_poll(struct pollfd *fds, u_int nfds, \
|
1996-09-07 16:40:22 +04:00
|
|
|
int timeout); }
|
1995-10-07 09:25:19 +03:00
|
|
|
95 NOARGS { int sys_fsync(int fd); }
|
|
|
|
96 NOARGS { int sys_setpriority(int which, int who, int prio); }
|
|
|
|
97 STD { int osf1_sys_socket(int domain, int type, \
|
1995-02-14 00:39:00 +03:00
|
|
|
int protocol); }
|
1995-10-07 09:25:19 +03:00
|
|
|
98 NOARGS { int sys_connect(int s, caddr_t name, int namelen); }
|
1999-05-10 07:33:04 +04:00
|
|
|
99 NOARGS { int compat_43_sys_accept(int s, caddr_t name, \
|
|
|
|
int *anamelen); }
|
1995-10-07 09:25:19 +03:00
|
|
|
100 NOARGS { int sys_getpriority(int which, int who); }
|
|
|
|
101 NOARGS { int compat_43_sys_send(int s, caddr_t buf, int len, \
|
1995-02-14 00:39:00 +03:00
|
|
|
int flags); }
|
1995-10-07 09:25:19 +03:00
|
|
|
102 NOARGS { int compat_43_sys_recv(int s, caddr_t buf, int len, \
|
1995-02-14 00:39:00 +03:00
|
|
|
int flags); }
|
1999-02-09 23:34:16 +03:00
|
|
|
103 NOARGS { int compat_13_sys_sigreturn(\
|
1999-04-30 08:33:51 +04:00
|
|
|
struct sigcontext13 *sigcntxp); }
|
1995-10-07 09:25:19 +03:00
|
|
|
104 NOARGS { int sys_bind(int s, caddr_t name, int namelen); }
|
|
|
|
105 NOARGS { int sys_setsockopt(int s, int level, int name, \
|
1999-04-23 10:19:51 +04:00
|
|
|
caddr_t val, int valsize); }
|
1999-05-10 06:54:57 +04:00
|
|
|
106 NOARGS { int sys_listen(int s, int backlog); }
|
1995-02-14 00:39:00 +03:00
|
|
|
107 UNIMPL plock
|
|
|
|
108 UNIMPL old sigvec
|
|
|
|
109 UNIMPL old sigblock
|
|
|
|
110 UNIMPL old sigsetmask
|
1999-02-09 23:34:16 +03:00
|
|
|
111 NOARGS { int compat_13_sys_sigsuspend(int mask); }
|
1995-10-07 09:25:19 +03:00
|
|
|
112 NOARGS { int compat_43_sys_sigstack(struct sigstack *nss, \
|
1995-02-14 00:39:00 +03:00
|
|
|
struct sigstack *oss); }
|
|
|
|
113 UNIMPL old recvmsg
|
|
|
|
114 UNIMPL old sendmsg
|
1998-07-01 04:41:36 +04:00
|
|
|
115 OBSOL vtrace
|
1999-04-28 06:03:13 +04:00
|
|
|
116 STD { int osf1_sys_gettimeofday(struct osf1_timeval *tp, \
|
1999-04-28 09:09:47 +04:00
|
|
|
struct osf1_timezone *tzp); }
|
1999-04-27 21:52:44 +04:00
|
|
|
117 STD { int osf1_sys_getrusage(int who, \
|
|
|
|
struct osf1_rusage *rusage); }
|
1999-04-30 02:08:49 +04:00
|
|
|
; XXX
|
1995-10-07 09:25:19 +03:00
|
|
|
118 NOARGS { int sys_getsockopt(int s, int level, int name, \
|
1999-04-23 10:19:51 +04:00
|
|
|
caddr_t val, int *avalsize); }
|
1995-02-14 00:39:00 +03:00
|
|
|
119 UNIMPL
|
1999-04-23 10:19:51 +04:00
|
|
|
120 STD { int osf1_sys_readv(int fd, \
|
|
|
|
struct osf1_iovec *iovp, u_int iovcnt); }
|
|
|
|
121 STD { int osf1_sys_writev(int fd, \
|
|
|
|
struct osf1_iovec *iovp, u_int iovcnt); }
|
1999-04-28 09:09:47 +04:00
|
|
|
122 STD { int osf1_sys_settimeofday(struct osf1_timeval *tv, \
|
|
|
|
struct osf1_timezone *tzp); }
|
1998-02-15 00:29:14 +03:00
|
|
|
123 NOARGS { int sys___posix_fchown(int fd, int uid, int gid); }
|
1995-10-07 09:25:19 +03:00
|
|
|
124 NOARGS { int sys_fchmod(int fd, int mode); }
|
|
|
|
125 NOARGS { int compat_43_sys_recvfrom(int s, caddr_t buf, \
|
1995-02-14 00:39:00 +03:00
|
|
|
size_t len, int flags, caddr_t from, \
|
|
|
|
int *fromlenaddr); }
|
|
|
|
126 UNIMPL setreuid
|
|
|
|
127 UNIMPL setregid
|
1998-05-20 20:34:29 +04:00
|
|
|
128 NOARGS { int sys___posix_rename(const char *from, \
|
|
|
|
const char *to); }
|
1999-04-23 10:19:51 +04:00
|
|
|
129 STD { int osf1_sys_truncate(const char *path, \
|
|
|
|
off_t length); }
|
1995-10-07 09:25:19 +03:00
|
|
|
130 STD { int osf1_sys_ftruncate(int fd, off_t length); }
|
1995-02-14 00:39:00 +03:00
|
|
|
131 UNIMPL flock
|
1995-10-07 09:25:19 +03:00
|
|
|
132 STD { int osf1_sys_setgid(gid_t gid); }
|
|
|
|
133 STD { int osf1_sys_sendto(int s, caddr_t buf, size_t len, \
|
1998-05-20 20:34:29 +04:00
|
|
|
int flags, struct sockaddr *to, int tolen); }
|
1995-10-07 09:25:19 +03:00
|
|
|
134 NOARGS { int sys_shutdown(int s, int how); }
|
1999-05-10 05:58:37 +04:00
|
|
|
135 STD { int osf1_sys_socketpair(int domain, int type, \
|
|
|
|
int protocol, int *rsv); }
|
1999-04-23 10:19:51 +04:00
|
|
|
136 NOARGS { int sys_mkdir(const char *path, int mode); }
|
|
|
|
137 NOARGS { int sys_rmdir(const char *path); }
|
1999-04-28 09:09:47 +04:00
|
|
|
138 STD { int osf1_sys_utimes(const char *path, \
|
|
|
|
const struct osf1_timeval *tptr); }
|
1995-02-14 00:39:00 +03:00
|
|
|
139 OBSOL 4.2 sigreturn
|
|
|
|
140 UNIMPL adjtime
|
1999-04-29 06:10:07 +04:00
|
|
|
141 NOARGS { int compat_43_sys_getpeername(int fdes, \
|
|
|
|
caddr_t asa, int *alen); }
|
1995-10-07 09:25:19 +03:00
|
|
|
142 NOARGS { int32_t compat_43_sys_gethostid(void); }
|
|
|
|
143 NOARGS { int compat_43_sys_sethostid(int32_t hostid); }
|
1999-04-30 02:08:49 +04:00
|
|
|
; XXX
|
1995-10-07 09:25:19 +03:00
|
|
|
144 STD { int osf1_sys_getrlimit(u_int which, \
|
|
|
|
struct rlimit *rlp); }
|
1999-04-30 02:08:49 +04:00
|
|
|
; XXX
|
1995-10-07 09:25:19 +03:00
|
|
|
145 STD { int osf1_sys_setrlimit(u_int which, \
|
|
|
|
struct rlimit *rlp); }
|
1995-02-14 00:39:00 +03:00
|
|
|
146 UNIMPL old killpg
|
1995-10-07 09:25:19 +03:00
|
|
|
147 NOARGS { int sys_setsid(void); }
|
1995-02-14 00:39:00 +03:00
|
|
|
148 UNIMPL quotactl
|
1995-10-07 09:25:19 +03:00
|
|
|
149 NOARGS { int compat_43_sys_quota(void); }
|
1999-04-29 06:10:07 +04:00
|
|
|
150 NOARGS { int compat_43_sys_getsockname(int fdec, \
|
|
|
|
caddr_t asa, int *alen); }
|
1998-07-01 04:41:36 +04:00
|
|
|
151 UNIMPL pread
|
|
|
|
152 UNIMPL pwrite
|
|
|
|
153 UNIMPL pid_block
|
|
|
|
154 UNIMPL pid_unblock
|
|
|
|
155 UNIMPL signal_urti
|
1995-10-07 09:25:19 +03:00
|
|
|
156 STD { int osf1_sys_sigaction(int signum, \
|
|
|
|
struct osf1_sigaction *nsa, \
|
|
|
|
struct osf1_sigaction *osa); }
|
1998-07-01 04:41:36 +04:00
|
|
|
157 UNIMPL sigwaitprim
|
1995-10-07 09:25:19 +03:00
|
|
|
158 UNIMPL nfssvc
|
|
|
|
159 NOARGS { int compat_43_sys_getdirentries(int fd, char *buf, \
|
1995-02-14 00:39:00 +03:00
|
|
|
u_int count, long *basep); }
|
1999-04-23 10:19:51 +04:00
|
|
|
160 STD { int osf1_sys_statfs(const char *path, \
|
1995-10-07 09:25:19 +03:00
|
|
|
struct osf1_statfs *buf, int len); }
|
1999-04-23 10:19:51 +04:00
|
|
|
161 STD { int osf1_sys_fstatfs(int fd, \
|
1995-10-07 09:25:19 +03:00
|
|
|
struct osf1_statfs *buf, int len); }
|
1995-02-14 00:39:00 +03:00
|
|
|
162 UNIMPL
|
1995-10-07 09:25:19 +03:00
|
|
|
163 UNIMPL async_daemon
|
|
|
|
164 UNIMPL getfh
|
1999-04-30 08:33:51 +04:00
|
|
|
165 NOARGS { int compat_09_sys_getdomainname(char *domainname, \
|
|
|
|
int len); }
|
|
|
|
166 NOARGS { int compat_09_sys_setdomainname(char *domainname, \
|
|
|
|
int len); }
|
1995-02-14 00:39:00 +03:00
|
|
|
167 UNIMPL
|
|
|
|
168 UNIMPL
|
1995-10-07 09:25:19 +03:00
|
|
|
169 UNIMPL exportfs
|
1995-02-14 00:39:00 +03:00
|
|
|
170 UNIMPL
|
|
|
|
171 UNIMPL
|
1995-10-07 09:25:19 +03:00
|
|
|
172 UNIMPL alt msgctl
|
|
|
|
173 UNIMPL alt msgget
|
|
|
|
174 UNIMPL alt msgrcv
|
|
|
|
175 UNIMPL alt msgsnd
|
|
|
|
176 UNIMPL alt semctl
|
|
|
|
177 UNIMPL alt semget
|
|
|
|
178 UNIMPL alt semop
|
|
|
|
179 UNIMPL alt uname
|
1995-02-14 00:39:00 +03:00
|
|
|
180 UNIMPL
|
1995-10-07 09:25:19 +03:00
|
|
|
181 UNIMPL alt plock
|
|
|
|
182 UNIMPL lockf
|
1995-02-14 00:39:00 +03:00
|
|
|
183 UNIMPL
|
1995-10-07 09:25:19 +03:00
|
|
|
184 UNIMPL getmnt
|
1995-02-14 00:39:00 +03:00
|
|
|
185 UNIMPL
|
1995-10-07 09:25:19 +03:00
|
|
|
186 UNIMPL unmount
|
|
|
|
187 UNIMPL alt sigpending
|
|
|
|
188 UNIMPL alt setsid
|
1995-02-14 00:39:00 +03:00
|
|
|
189 UNIMPL
|
|
|
|
190 UNIMPL
|
|
|
|
191 UNIMPL
|
|
|
|
192 UNIMPL
|
|
|
|
193 UNIMPL
|
|
|
|
194 UNIMPL
|
|
|
|
195 UNIMPL
|
|
|
|
196 UNIMPL
|
|
|
|
197 UNIMPL
|
|
|
|
198 UNIMPL
|
1995-10-07 09:25:19 +03:00
|
|
|
199 UNIMPL swapon
|
|
|
|
200 UNIMPL msgctl
|
|
|
|
201 UNIMPL msgget
|
|
|
|
202 UNIMPL msgrcv
|
|
|
|
203 UNIMPL msgsnd
|
|
|
|
204 UNIMPL semctl
|
|
|
|
205 UNIMPL semget
|
|
|
|
206 UNIMPL semop
|
1999-04-28 06:03:13 +04:00
|
|
|
207 STD { int osf1_sys_uname(struct osf1_uname *name); }
|
1999-04-23 10:19:51 +04:00
|
|
|
208 NOARGS { int sys___posix_lchown(const char *path, int uid, \
|
1998-02-15 00:29:14 +03:00
|
|
|
int gid); }
|
1999-05-04 08:59:21 +04:00
|
|
|
209 STD { void *osf1_sys_shmat(int shmid, \
|
|
|
|
const void *shmaddr, int shmflg); }
|
|
|
|
210 STD { int osf1_sys_shmctl(int shmid, int cmd, \
|
|
|
|
struct osf1_shmid_ds *buf); }
|
|
|
|
211 STD { int osf1_sys_shmdt(const void *shmaddr); }
|
|
|
|
212 STD { int osf1_sys_shmget(osf1_key_t key, size_t size, \
|
|
|
|
int flags); }
|
1995-10-07 09:25:19 +03:00
|
|
|
213 UNIMPL mvalid
|
|
|
|
214 UNIMPL getaddressconf
|
|
|
|
215 UNIMPL msleep
|
|
|
|
216 UNIMPL mwakeup
|
|
|
|
217 UNIMPL msync
|
|
|
|
218 UNIMPL signal
|
|
|
|
219 UNIMPL utc gettime
|
|
|
|
220 UNIMPL utc adjtime
|
1995-02-14 00:39:00 +03:00
|
|
|
221 UNIMPL
|
1995-10-07 09:25:19 +03:00
|
|
|
222 UNIMPL security
|
|
|
|
223 UNIMPL kloadcall
|
1995-02-14 00:39:00 +03:00
|
|
|
224 UNIMPL
|
|
|
|
225 UNIMPL
|
|
|
|
226 UNIMPL
|
|
|
|
227 UNIMPL
|
|
|
|
228 UNIMPL
|
|
|
|
229 UNIMPL
|
|
|
|
230 UNIMPL
|
|
|
|
231 UNIMPL
|
|
|
|
232 UNIMPL
|
|
|
|
233 UNIMPL getpgid
|
1998-02-14 04:29:43 +03:00
|
|
|
234 NOARGS { pid_t sys_getsid(pid_t pid); }
|
1999-04-23 10:19:51 +04:00
|
|
|
235 STD { int osf1_sys_sigaltstack( \
|
|
|
|
struct osf1_sigaltstack *nss, \
|
1995-10-07 09:25:19 +03:00
|
|
|
struct osf1_sigaltstack *oss); }
|
1995-02-14 00:39:00 +03:00
|
|
|
236 UNIMPL waitid
|
|
|
|
237 UNIMPL priocntlset
|
|
|
|
238 UNIMPL sigsendset
|
1998-07-01 04:41:36 +04:00
|
|
|
239 UNIMPL set_speculative
|
1995-02-14 00:39:00 +03:00
|
|
|
240 UNIMPL msfs_syscall
|
1999-04-30 02:08:49 +04:00
|
|
|
241 STD { int osf1_sys_sysinfo(int cmd, char *buf, long len); }
|
1995-02-14 00:39:00 +03:00
|
|
|
242 UNIMPL uadmin
|
|
|
|
243 UNIMPL fuser
|
1998-07-01 04:41:36 +04:00
|
|
|
244 UNIMPL proplist_syscall
|
|
|
|
245 UNIMPL ntp_adjtime
|
|
|
|
246 UNIMPL ntp_gettime
|
1999-05-04 06:12:15 +04:00
|
|
|
247 STD { long osf1_sys_pathconf(const char *path, int name); }
|
|
|
|
248 STD { long osf1_sys_fpathconf(int fd, int name); }
|
1995-02-14 00:39:00 +03:00
|
|
|
249 UNIMPL
|
|
|
|
250 UNIMPL uswitch
|
1999-04-28 09:09:47 +04:00
|
|
|
251 STD { int osf1_sys_usleep_thread( \
|
|
|
|
struct osf1_timeval *sleep, \
|
|
|
|
struct osf1_timeval *slept); }
|
1995-02-14 00:39:00 +03:00
|
|
|
252 UNIMPL audcntl
|
|
|
|
253 UNIMPL audgen
|
|
|
|
254 UNIMPL sysfs
|
1998-07-01 04:41:36 +04:00
|
|
|
255 UNIMPL subsys_info
|
2000-11-17 06:06:28 +03:00
|
|
|
256 STD { int osf1_sys_getsysinfo(u_long op, caddr_t buffer, \
|
|
|
|
u_long nbytes, caddr_t arg, u_long flag); }
|
1995-10-07 09:25:19 +03:00
|
|
|
257 STD { int osf1_sys_setsysinfo(u_long op, caddr_t buffer, \
|
1995-02-14 00:39:00 +03:00
|
|
|
u_long nbytes, caddr_t arg, u_long flag); }
|
|
|
|
258 UNIMPL afs_syscall
|
|
|
|
259 UNIMPL swapctl
|
|
|
|
260 UNIMPL memcntl
|
1998-07-01 04:41:36 +04:00
|
|
|
261 UNIMPL fdatasync
|