1999-08-28 01:08:13 +00:00
|
|
|
$FreeBSD$
|
1996-03-02 19:04:16 +00:00
|
|
|
|
|
|
|
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
|
|
|
; System call name/number master file (or rather, slave, from LINUX).
|
|
|
|
; Processed to created linux_sysent.c, linux_syscalls.c and linux_syscall.h.
|
|
|
|
|
2006-02-04 14:03:22 +00:00
|
|
|
; Columns: number audit type nargs name alt{name,tag,rtyp}/comments
|
1996-03-02 19:04:16 +00:00
|
|
|
; number system call number, must be in order
|
2005-05-30 15:09:18 +00:00
|
|
|
; audit the audit event associated with the system call
|
|
|
|
; A value of AUE_NULL means no auditing, but it also means that
|
|
|
|
; there is no audit event for the call at this time. For the
|
|
|
|
; case where the event exists, but we don't want auditing, the
|
|
|
|
; event should be #defined to AUE_NULL in audit_kevents.h.
|
2006-03-18 18:20:17 +00:00
|
|
|
; type one of STD, OBSOL, UNIMPL, CPT_NOA, LIBCOMPAT,
|
2000-10-23 02:20:01 +00:00
|
|
|
; NODEF, NOARGS, NOPROTO
|
1996-03-02 19:04:16 +00:00
|
|
|
; name psuedo-prototype of syscall routine
|
|
|
|
; If one of the following alts is different, then all appear:
|
|
|
|
; altname name of system call if different
|
|
|
|
; alttag name of args struct tag if different from [o]`name'"_args"
|
|
|
|
; altrtyp return type if not int (bogus - syscalls always return int)
|
|
|
|
; for UNIMPL/OBSOL, name continues with comments
|
|
|
|
|
|
|
|
; types:
|
|
|
|
; STD always included
|
2000-10-23 02:20:01 +00:00
|
|
|
; CPT_NOA combines COMPAT with NOARGS
|
1996-03-02 19:04:16 +00:00
|
|
|
; LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
|
2000-10-23 02:20:01 +00:00
|
|
|
; NOARGS same as STD except do not create structure in sys/sysproto.h
|
|
|
|
; NODEF ??
|
|
|
|
; NOPROTO same as STD except do not create structure or function in
|
|
|
|
; sys/sysproto.h
|
1996-03-02 19:04:16 +00:00
|
|
|
; OBSOL obsolete, not included in system, only specifies name
|
|
|
|
; UNIMPL not implemented, placeholder only
|
|
|
|
|
1998-06-09 03:28:14 +00:00
|
|
|
#include "opt_compat.h"
|
1996-03-02 19:04:16 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sysent.h>
|
|
|
|
#include <sys/sysproto.h>
|
2005-03-07 00:18:06 +00:00
|
|
|
#include <compat/linux/linux_sysproto.h>
|
2000-10-22 21:36:27 +00:00
|
|
|
#include <alpha/linux/linux.h>
|
2000-12-03 01:28:51 +00:00
|
|
|
#include <alpha/linux/linux_proto.h>
|
1996-03-02 19:04:16 +00:00
|
|
|
|
2005-03-07 00:18:06 +00:00
|
|
|
; Isn't pretty, but there seems to be no other way to trap nosys
|
|
|
|
#define nosys linux_nosys
|
|
|
|
|
1996-03-02 19:04:16 +00:00
|
|
|
; #ifdef's, etc. may be included, and are copied to the output files.
|
|
|
|
|
2005-05-30 15:09:18 +00:00
|
|
|
0 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
1 AUE_EXIT MNOPROTO { void sys_exit(int rval); } exit \
|
2005-05-30 15:09:18 +00:00
|
|
|
sys_exit_args void
|
2006-02-04 14:03:22 +00:00
|
|
|
2 AUE_FORK MSTD { int linux_fork(void); }
|
|
|
|
3 AUE_READ MNOPROTO { int read(int fd, char *buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
u_int nbyte); }
|
2006-02-04 14:03:22 +00:00
|
|
|
4 AUE_WRITE MNOPROTO { int write(int fd, char *buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
u_int nbyte); }
|
|
|
|
5 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
6 AUE_CLOSE MNOPROTO { int close(int fd); }
|
|
|
|
7 AUE_WAIT4 MSTD { int osf1_wait4(int pid, int *status, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int options, \
|
|
|
|
struct osf1_rusage *rusage); }
|
|
|
|
8 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
9 AUE_LINK MSTD { int linux_link(char *path, char *to); }
|
|
|
|
10 AUE_UNLINK MSTD { int linux_unlink(char *path); }
|
2005-05-30 15:09:18 +00:00
|
|
|
11 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
12 AUE_CHDIR MSTD { int linux_chdir(char *path); }
|
|
|
|
13 AUE_FCHDIR MNOPROTO { int fchdir(int fd); }
|
|
|
|
14 AUE_MKNOD MSTD { int linux_mknod(char *path, l_int mode, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_dev_t dev); }
|
2006-02-04 14:03:22 +00:00
|
|
|
15 AUE_CHMOD MSTD { int linux_chmod(char *path, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_mode_t mode); }
|
2006-02-04 14:03:22 +00:00
|
|
|
16 AUE_CHOWN MSTD { int linux_chown(char *path, l_uid_t uid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_gid_t gid); }
|
|
|
|
17 AUE_NULL STD { int linux_brk(l_ulong dsend); }
|
|
|
|
18 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
19 AUE_LSEEK MSTD { int linux_lseek(l_uint fdes, l_off_t off, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int whence); }
|
2006-02-04 14:03:22 +00:00
|
|
|
20 AUE_GETPID MNOPROTO { int getpid(void); }
|
|
|
|
21 AUE_MOUNT UNIMPL osf1_mount
|
|
|
|
22 AUE_UNMOUNT STD { int linux_umount(char *path, l_int flags); }
|
|
|
|
23 AUE_SETUID MNOPROTO { int setuid(uid_t uid); }
|
|
|
|
24 AUE_GETUID MNOPROTO { int getuid(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
25 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
26 AUE_PTRACE MSTD { int linux_ptrace(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
27 AUE_NULL UNIMPL
|
|
|
|
28 AUE_NULL UNIMPL
|
|
|
|
29 AUE_NULL UNIMPL
|
|
|
|
30 AUE_NULL UNIMPL
|
|
|
|
31 AUE_NULL UNIMPL
|
|
|
|
32 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
33 AUE_ACCESS MSTD { int linux_access(char *path, l_int flags); }
|
2005-05-30 15:09:18 +00:00
|
|
|
34 AUE_NULL UNIMPL
|
|
|
|
35 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
36 AUE_SYNC MNOPROTO { int sync(void); }
|
|
|
|
37 AUE_KILL MSTD { int linux_kill(l_int pid, l_int signum); }
|
2005-05-30 15:09:18 +00:00
|
|
|
38 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
39 AUE_SETPGRP MNOPROTO { int setpgid(int pid, int pgid); }
|
2005-05-30 15:09:18 +00:00
|
|
|
40 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
41 AUE_DUP MNOPROTO { int dup(u_int fd); }
|
|
|
|
42 AUE_PIPE MNOPROTO { int pipe(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
43 AUE_NULL UNIMPL osf_set_program_attributes
|
|
|
|
44 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
45 AUE_OPEN_RWTC MSTD { int linux_open(char *path, l_int flags, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int mode); }
|
|
|
|
46 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
47 AUE_GETGID MNOPROTO { int getgid(void); }
|
|
|
|
48 AUE_SIGPROCMASK MSTD { int osf1_sigprocmask(int how, \
|
2005-05-30 15:09:18 +00:00
|
|
|
u_long mask); }
|
|
|
|
49 AUE_NULL UNIMPL
|
|
|
|
50 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
51 AUE_ACCT MNOPROTO { int acct(char *path); }
|
|
|
|
52 AUE_SIGPENDING MSTD { int linux_sigpending(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
53 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
54 AUE_IOCTL STD { int linux_ioctl(l_uint fd, l_uint cmd, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_ulong arg); }
|
|
|
|
55 AUE_NULL UNIMPL
|
|
|
|
56 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
57 AUE_SYMLINK MSTD { int linux_symlink(char *path, char *to); }
|
|
|
|
58 AUE_READLINK MSTD { int linux_readlink(char *name, char *buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int count); }
|
2006-02-04 14:03:22 +00:00
|
|
|
59 AUE_EXECVE MSTD { int linux_execve(char *path, char **argp, \
|
2005-05-30 15:09:18 +00:00
|
|
|
char **envp); }
|
2006-02-04 14:03:22 +00:00
|
|
|
60 AUE_UMASK MNOPROTO { int umask(int newmask); }
|
|
|
|
61 AUE_CHROOT MNOPROTO { int chroot(char *path); }
|
2005-05-30 15:09:18 +00:00
|
|
|
62 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
63 AUE_GETPGRP MNOPROTO { int getpgrp(void); }
|
|
|
|
64 AUE_O_GETPAGESIZE MSTD { int linux_getpagesize(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
65 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
66 AUE_VFORK MSTD { int linux_vfork(void); }
|
|
|
|
67 AUE_STAT MSTD { int linux_newstat(char *path, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_newstat *buf); }
|
2006-02-04 14:03:22 +00:00
|
|
|
68 AUE_LSTAT MSTD { int linux_newlstat(char *path, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_newstat *buf); }
|
|
|
|
69 AUE_NULL UNIMPL
|
|
|
|
70 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
71 AUE_MMAP MSTD { int linux_mmap(l_ulong addr, l_ulong len, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_ulong prot, l_ulong flags, l_ulong fd, \
|
|
|
|
l_ulong pos); }
|
|
|
|
72 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
73 AUE_MUNMAP MSTD { int linux_munmap(l_ulong addr, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_size_t len); }
|
2006-02-04 14:03:22 +00:00
|
|
|
74 AUE_MPROTECT MSTD { int linux_mprotect(l_ulong addr, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_size_t len, l_ulong prot); }
|
2006-02-04 14:03:22 +00:00
|
|
|
75 AUE_MADVISE MNOPROTO { int madvise(void *addr, \
|
2005-05-30 15:09:18 +00:00
|
|
|
size_t len, int behav); }
|
2006-02-04 14:03:22 +00:00
|
|
|
76 AUE_O_VHANGUP MSTD { int linux_vhangup(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
77 AUE_NULL UNIMPL
|
|
|
|
78 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
79 AUE_SETGROUPS MSTD { int linux_setgroups(l_int gidsetsize, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_gid_t *grouplist); }
|
2006-02-04 14:03:22 +00:00
|
|
|
80 AUE_GETGROUPS MSTD { int linux_getgroups(l_int gidsetsize, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_gid_t *grouplist); }
|
|
|
|
81 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
82 AUE_SETPGRP MNODEF setpgid setpgid setpgid_args int
|
|
|
|
83 AUE_SETITIMER MSTD { int osf1_setitimer(u_int which, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct itimerval *itv, \
|
|
|
|
struct itimerval *oitv); }
|
|
|
|
84 AUE_NULL UNIMPL
|
|
|
|
85 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
86 AUE_GETITIMER UNIMPL osf_getitimer
|
|
|
|
87 AUE_SYSCTL MSTD { int linux_gethostname(void); }
|
2006-03-18 18:20:17 +00:00
|
|
|
88 AUE_SYSCTL MSTD { int linux_sethostname(char *hostname, u_int len); }
|
2006-02-04 14:03:22 +00:00
|
|
|
89 AUE_GETDTABLESIZE MSTD { int linux_getdtablesize(void); }
|
|
|
|
90 AUE_DUP2 MNOPROTO { int dup2(u_int from, u_int to); }
|
|
|
|
91 AUE_FSTAT MSTD { int linux_newfstat(l_uint fd, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_newstat *buf); }
|
2006-02-04 14:03:22 +00:00
|
|
|
92 AUE_FCNTL MSTD { int linux_fcntl(l_uint fd, l_uint cmd, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_ulong arg); }
|
2006-02-04 14:03:22 +00:00
|
|
|
93 AUE_SELECT MSTD { int osf1_select(u_int nd, fd_set *in, \
|
2005-05-30 15:09:18 +00:00
|
|
|
fd_set *ou, fd_set *ex, \
|
|
|
|
struct timeval *tv); }
|
2006-02-04 14:03:22 +00:00
|
|
|
94 AUE_POLL MNOPROTO { int poll(struct pollfd*, unsigned int \
|
2005-05-30 15:09:18 +00:00
|
|
|
nfds, long timeout); }
|
2006-02-04 14:03:22 +00:00
|
|
|
95 AUE_FSYNC MNOPROTO { int fsync(int fd); }
|
|
|
|
96 AUE_SETPRIORITY MNOPROTO { int setpriority(int which, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int who, int prio); }
|
2006-02-04 14:03:22 +00:00
|
|
|
97 AUE_SOCKET MSTD { int osf1_socket(int domain, int type, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int protocol); }
|
2006-02-04 14:03:22 +00:00
|
|
|
98 AUE_CONNECT MSTD { int linux_connect(l_int s, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_sockaddr *name, l_int namelen); }
|
2006-02-04 14:03:22 +00:00
|
|
|
99 AUE_ACCEPT MNOPROTO { int oaccept(int s, caddr_t name, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int *anamelen); } accept accept_args int
|
2006-02-04 14:03:22 +00:00
|
|
|
100 AUE_GETPRIORITY MSTD { int linux_getpriority(int which, int who); }
|
|
|
|
101 AUE_SEND MNOPROTO { int osend(int s, caddr_t buf, int len, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int flags); }
|
2006-02-04 14:03:22 +00:00
|
|
|
102 AUE_RECV MNOPROTO { int orecv(int s, caddr_t buf, int len, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int flags); }
|
|
|
|
103 AUE_NULL MSTD { int osf1_sigreturn( \
|
|
|
|
struct osigcontext *sigcntxp); }
|
2006-02-04 14:03:22 +00:00
|
|
|
104 AUE_BIND MNOPROTO { int bind(int s, caddr_t name, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int namelen); }
|
2006-02-04 14:03:22 +00:00
|
|
|
105 AUE_SETSOCKOPT MNOPROTO { int setsockopt(int s, int level, int name, \
|
2005-05-30 15:09:18 +00:00
|
|
|
caddr_t val, int valsize); }
|
2006-02-04 14:03:22 +00:00
|
|
|
106 AUE_LISTEN MNOPROTO { int listen(int s, int backlog); }
|
2005-05-30 15:09:18 +00:00
|
|
|
107 AUE_NULL UNIMPL
|
|
|
|
108 AUE_NULL UNIMPL
|
|
|
|
109 AUE_NULL UNIMPL
|
|
|
|
110 AUE_NULL UNIMPL
|
|
|
|
111 AUE_NULL MSTD { int osf1_sigsuspend(unsigned long ss); }
|
|
|
|
112 AUE_NULL UNIMPL osf_sigstack
|
2006-02-04 14:03:22 +00:00
|
|
|
113 AUE_RECVMSG MSTD { int linux_recvmsg(void); }
|
|
|
|
114 AUE_SENDMSG MSTD { int linux_sendmsg(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
115 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
116 AUE_NULL MSTD { int osf1_gettimeofday( \
|
|
|
|
struct timeval *tp, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct timezone *tzp); }
|
2006-02-04 14:03:22 +00:00
|
|
|
117 AUE_GETRUSAGE MSTD { int osf1_getrusage(long who, \
|
2005-05-30 15:09:18 +00:00
|
|
|
void *rusage); }
|
2006-02-04 14:03:22 +00:00
|
|
|
118 AUE_GETSOCKOPT MNOPROTO { int getsockopt(int s, int level, int name, \
|
2005-05-30 15:09:18 +00:00
|
|
|
caddr_t val, int *avalsize); }
|
|
|
|
119 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
120 AUE_READV MNOPROTO { int readv(int fd, struct iovec *iovp, \
|
2005-05-30 15:09:18 +00:00
|
|
|
u_int iovcnt); }
|
2006-02-04 14:03:22 +00:00
|
|
|
121 AUE_WRITEV MNOPROTO { int writev(int fd, struct iovec *iovp, \
|
2005-05-30 15:09:18 +00:00
|
|
|
u_int iovcnt); }
|
2006-02-04 14:03:22 +00:00
|
|
|
122 AUE_SETTIMEOFDAY UNIMPL osf_settimeofday
|
|
|
|
123 AUE_FCHOWN NOPROTO { int fchown(int fd, int uid, int gid); }
|
|
|
|
124 AUE_FCHMOD NOPROTO { int fchmod(int fd, int mode); }
|
|
|
|
125 AUE_RECVFROM NOPROTO { int orecvfrom(int s, caddr_t buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
size_t len, int flags, caddr_t from, \
|
|
|
|
int *fromlenaddr); } recvfrom \
|
|
|
|
recvfrom_args int
|
2006-02-04 14:03:22 +00:00
|
|
|
126 AUE_SETREUID MNOPROTO { int setreuid(int ruid, int euid); }
|
|
|
|
127 AUE_SETREGID MNOPROTO { int setregid(int rgid, int egid); }
|
|
|
|
128 AUE_RENAME MSTD { int linux_rename(char *from, char *to); }
|
|
|
|
129 AUE_TRUNCATE MSTD { int linux_truncate(char *path, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_ulong length); }
|
2006-03-18 18:20:17 +00:00
|
|
|
130 AUE_FTRUNCATE MSTD { int linux_ftruncate(int fd, long length); }
|
2006-02-04 14:03:22 +00:00
|
|
|
131 AUE_FLOCK MNOPROTO { int flock(int fd, int how); }
|
|
|
|
132 AUE_SETGID MNOPROTO { int setgid(gid_t gid); }
|
|
|
|
133 AUE_SENDTO MSTD { int osf1_sendto(int s, caddr_t buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
size_t len, int flags, \
|
|
|
|
struct sockaddr *to, int tolen); }
|
2006-02-04 14:03:22 +00:00
|
|
|
134 AUE_SHUTDOWN MNOPROTO { int shutdown(int s, int how); }
|
|
|
|
135 AUE_SOCKETPAIR MSTD { int linux_socketpair(void); }
|
|
|
|
136 AUE_MKDIR MSTD { int linux_mkdir(char *path, l_int mode); }
|
|
|
|
137 AUE_RMDIR MSTD { int linux_rmdir(char *path); }
|
|
|
|
138 AUE_UTIMES MNOPROTO { int utimes(char *path, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct timeval *tptr); }
|
|
|
|
139 AUE_NULL UNIMPL
|
|
|
|
140 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
141 AUE_GETPEERNAME MNOPROTO { int ogetpeername(int fdes, caddr_t asa, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int *alen); }
|
|
|
|
142 AUE_NULL UNIMPL
|
|
|
|
143 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
144 AUE_GETRLIMIT MSTD { int linux_getrlimit(l_uint resource, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_rlimit *rlim); }
|
2006-02-04 14:03:22 +00:00
|
|
|
145 AUE_SETRLIMIT MSTD { int linux_setrlimit(l_uint resource, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_rlimit *rlim); }
|
|
|
|
146 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
147 AUE_SETSID MNOPROTO { int setsid(void); }
|
|
|
|
148 AUE_QUOTACTL MSTD { int linux_quotactl(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
149 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
150 AUE_GETSOCKNAME MNOPROTO { int ogetsockname(int fdec, caddr_t asa, \
|
2005-05-30 15:09:18 +00:00
|
|
|
int *alen);} getsockname \
|
|
|
|
getsockname_args int
|
|
|
|
151 AUE_NULL UNIMPL
|
|
|
|
152 AUE_NULL UNIMPL
|
|
|
|
153 AUE_NULL UNIMPL
|
|
|
|
154 AUE_NULL UNIMPL
|
|
|
|
155 AUE_NULL UNIMPL
|
|
|
|
156 AUE_NULL MSTD { int osf1_sigaction(int sig, \
|
|
|
|
struct osf1_sigaction *nsa, \
|
|
|
|
struct osf1_sigaction *osa); }
|
|
|
|
157 AUE_NULL UNIMPL
|
|
|
|
158 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
159 AUE_GETDIRENTRIES UNIMPL osf_getdirentries
|
|
|
|
160 AUE_STATFS UNIMPL osf_statfs
|
|
|
|
161 AUE_FSTATFS UNIMPL osf_fstatfs
|
2005-05-30 15:09:18 +00:00
|
|
|
162 AUE_NULL UNIMPL
|
|
|
|
163 AUE_NULL UNIMPL
|
|
|
|
164 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
165 AUE_SYSCTL UNIMPL osf_getdomainname
|
|
|
|
166 AUE_SYSCTL MNOPROTO { int setdomainname( \
|
|
|
|
char *name, int len); }
|
2005-05-30 15:09:18 +00:00
|
|
|
167 AUE_NULL UNIMPL
|
|
|
|
168 AUE_NULL UNIMPL
|
|
|
|
169 AUE_NULL UNIMPL
|
|
|
|
170 AUE_NULL UNIMPL
|
|
|
|
171 AUE_NULL UNIMPL
|
|
|
|
172 AUE_NULL UNIMPL
|
|
|
|
173 AUE_NULL UNIMPL
|
|
|
|
174 AUE_NULL UNIMPL
|
|
|
|
175 AUE_NULL UNIMPL
|
|
|
|
176 AUE_NULL UNIMPL
|
|
|
|
177 AUE_NULL UNIMPL
|
|
|
|
178 AUE_NULL UNIMPL
|
|
|
|
179 AUE_NULL UNIMPL
|
|
|
|
180 AUE_NULL UNIMPL
|
|
|
|
181 AUE_NULL UNIMPL
|
|
|
|
182 AUE_NULL UNIMPL
|
|
|
|
183 AUE_NULL UNIMPL
|
|
|
|
184 AUE_NULL UNIMPL
|
|
|
|
185 AUE_NULL UNIMPL
|
|
|
|
186 AUE_NULL UNIMPL
|
|
|
|
187 AUE_NULL UNIMPL
|
|
|
|
188 AUE_NULL UNIMPL
|
|
|
|
189 AUE_NULL UNIMPL
|
|
|
|
190 AUE_NULL UNIMPL
|
|
|
|
191 AUE_NULL UNIMPL
|
|
|
|
192 AUE_NULL UNIMPL
|
|
|
|
193 AUE_NULL UNIMPL
|
|
|
|
194 AUE_NULL UNIMPL
|
|
|
|
195 AUE_NULL UNIMPL
|
|
|
|
196 AUE_NULL UNIMPL
|
|
|
|
197 AUE_NULL UNIMPL
|
|
|
|
198 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
199 AUE_SWAPON UNIMPL osf_swapon
|
|
|
|
200 AUE_MSGCTL MSTD { int linux_msgctl(l_int msqid, l_int cmd, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_msqid_ds *buf); }
|
2006-02-04 14:03:22 +00:00
|
|
|
201 AUE_MSGGET MSTD { int linux_msgget(l_key_t key, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int msgflg); }
|
2006-02-04 14:03:22 +00:00
|
|
|
202 AUE_MSGRCV MSTD { int linux_msgrcv(l_int msqid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_msgbuf *msgp, l_size_t msgsz, \
|
|
|
|
l_long msgtyp, l_int msgflg); }
|
2006-02-04 14:03:22 +00:00
|
|
|
203 AUE_MSGSND MSTD { int linux_msgsnd(l_int msqid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_msgbuf *msgp, l_size_t msgsz, \
|
|
|
|
l_int msgflg); }
|
2006-02-04 14:03:22 +00:00
|
|
|
204 AUE_SEMCTL STD { int linux_semctl(l_int semid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int semnum, l_int cmd, \
|
|
|
|
union l_semun arg); }
|
2006-02-04 14:03:22 +00:00
|
|
|
205 AUE_SEMGET MSTD { int linux_semget(l_key_t key, l_int nsems, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int semflg); }
|
2006-02-04 14:03:22 +00:00
|
|
|
206 AUE_SEMOP MSTD { int linux_semop(l_int semid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_sembuf *tsops, l_uint nsops); }
|
|
|
|
207 AUE_NULL UNIMPL osf_utsname
|
2006-02-04 14:03:22 +00:00
|
|
|
208 AUE_LCHOWN MSTD { int linux_lchown(char *path, l_uid_t uid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_gid_t gid); }
|
2006-02-04 14:03:22 +00:00
|
|
|
209 AUE_SHMAT MSTD { int linux_shmat(l_int shmid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
char *shmaddr, l_int shmflg); }
|
2006-02-04 14:03:22 +00:00
|
|
|
210 AUE_SHMCTL MSTD { int linux_shmctl(l_int shmid, l_int cmd, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_shmid_ds *buf); }
|
2006-02-04 14:03:22 +00:00
|
|
|
211 AUE_SHMDT MSTD { int linux_shmdt(char *shmaddr); }
|
|
|
|
212 AUE_SHMGET MSTD { int linux_shmget(l_key_t key, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_size_t size, l_int shmflg); }
|
|
|
|
213 AUE_NULL UNIMPL
|
|
|
|
214 AUE_NULL UNIMPL
|
|
|
|
215 AUE_NULL UNIMPL
|
|
|
|
216 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
217 AUE_MSYNC MSTD { int linux_msync(l_ulong addr, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_size_t len, l_int fl); }
|
|
|
|
218 AUE_NULL UNIMPL
|
|
|
|
219 AUE_NULL UNIMPL
|
|
|
|
220 AUE_NULL UNIMPL
|
|
|
|
221 AUE_NULL UNIMPL
|
|
|
|
222 AUE_NULL UNIMPL
|
|
|
|
223 AUE_NULL UNIMPL
|
|
|
|
224 AUE_NULL UNIMPL
|
|
|
|
225 AUE_NULL UNIMPL
|
|
|
|
226 AUE_NULL UNIMPL
|
|
|
|
227 AUE_NULL UNIMPL
|
|
|
|
228 AUE_NULL UNIMPL
|
|
|
|
229 AUE_NULL UNIMPL
|
|
|
|
230 AUE_NULL UNIMPL
|
|
|
|
231 AUE_NULL UNIMPL
|
|
|
|
232 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
233 AUE_GETPPID MNOPROTO { int getpgid(int pid); }
|
|
|
|
234 AUE_GETSID MSTD { int linux_getsid(l_pid_t pid); }
|
2005-07-13 20:32:42 +00:00
|
|
|
235 AUE_NULL MSTD { int linux_sigaltstack(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
236 AUE_NULL UNIMPL
|
|
|
|
237 AUE_NULL UNIMPL
|
|
|
|
238 AUE_NULL UNIMPL
|
|
|
|
239 AUE_NULL UNIMPL
|
|
|
|
240 AUE_NULL UNIMPL
|
|
|
|
241 AUE_NULL MSTD { int osf1_sysinfo(int cmd, char *buf, \
|
|
|
|
long count); }
|
|
|
|
242 AUE_NULL UNIMPL
|
|
|
|
243 AUE_NULL UNIMPL
|
|
|
|
244 AUE_NULL UNIMPL osf_proplist_syscall
|
|
|
|
245 AUE_NULL UNIMPL
|
|
|
|
246 AUE_NULL UNIMPL
|
|
|
|
247 AUE_NULL UNIMPL
|
|
|
|
248 AUE_NULL UNIMPL
|
|
|
|
249 AUE_NULL UNIMPL
|
|
|
|
250 AUE_NULL UNIMPL
|
|
|
|
251 AUE_NULL UNIMPL osf_usleep_thread
|
|
|
|
252 AUE_NULL UNIMPL
|
|
|
|
253 AUE_NULL UNIMPL
|
2005-07-13 20:32:42 +00:00
|
|
|
254 AUE_NULL MSTD { int linux_sysfs(l_int option, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_ulong arg1, l_ulong arg2); }
|
|
|
|
255 AUE_NULL UNIMPL
|
2005-07-13 20:32:42 +00:00
|
|
|
256 AUE_NULL MSTD { int osf1_getsysinfo(u_long op, \
|
2005-05-30 15:09:18 +00:00
|
|
|
caddr_t buffer, u_long nbytes, \
|
|
|
|
caddr_t arg, u_long flag); }
|
2005-07-13 20:32:42 +00:00
|
|
|
257 AUE_NULL MSTD { int osf1_setsysinfo(u_long op, \
|
2005-05-30 15:09:18 +00:00
|
|
|
caddr_t buffer, u_long nbytes, \
|
|
|
|
caddr_t arg, u_long flag); }
|
|
|
|
258 AUE_NULL UNIMPL
|
|
|
|
259 AUE_NULL UNIMPL
|
|
|
|
260 AUE_NULL UNIMPL
|
|
|
|
261 AUE_NULL UNIMPL
|
|
|
|
262 AUE_NULL UNIMPL
|
|
|
|
263 AUE_NULL UNIMPL
|
|
|
|
264 AUE_NULL UNIMPL
|
|
|
|
265 AUE_NULL UNIMPL
|
|
|
|
266 AUE_NULL UNIMPL
|
|
|
|
267 AUE_NULL UNIMPL
|
|
|
|
268 AUE_NULL UNIMPL
|
|
|
|
269 AUE_NULL UNIMPL
|
|
|
|
270 AUE_NULL UNIMPL
|
|
|
|
271 AUE_NULL UNIMPL
|
|
|
|
272 AUE_NULL UNIMPL
|
|
|
|
273 AUE_NULL UNIMPL
|
|
|
|
274 AUE_NULL UNIMPL
|
|
|
|
275 AUE_NULL UNIMPL
|
|
|
|
276 AUE_NULL UNIMPL
|
|
|
|
277 AUE_NULL UNIMPL
|
|
|
|
278 AUE_NULL UNIMPL
|
|
|
|
279 AUE_NULL UNIMPL
|
|
|
|
280 AUE_NULL UNIMPL
|
|
|
|
281 AUE_NULL UNIMPL
|
|
|
|
282 AUE_NULL UNIMPL
|
|
|
|
283 AUE_NULL UNIMPL
|
|
|
|
284 AUE_NULL UNIMPL
|
|
|
|
285 AUE_NULL UNIMPL
|
|
|
|
286 AUE_NULL UNIMPL
|
|
|
|
287 AUE_NULL UNIMPL
|
|
|
|
288 AUE_NULL UNIMPL
|
|
|
|
289 AUE_NULL UNIMPL
|
|
|
|
290 AUE_NULL UNIMPL
|
|
|
|
291 AUE_NULL UNIMPL
|
|
|
|
292 AUE_NULL UNIMPL
|
|
|
|
293 AUE_NULL UNIMPL
|
|
|
|
294 AUE_NULL UNIMPL
|
|
|
|
295 AUE_NULL UNIMPL
|
|
|
|
296 AUE_NULL UNIMPL
|
|
|
|
297 AUE_NULL UNIMPL
|
|
|
|
298 AUE_NULL UNIMPL
|
|
|
|
299 AUE_NULL UNIMPL
|
2006-02-04 14:03:22 +00:00
|
|
|
300 AUE_BDFLUSH MSTD { int linux_bdflush(void); }
|
2005-07-13 20:32:42 +00:00
|
|
|
301 AUE_NULL MSTD { int linux_sethae(void); }
|
2006-02-04 14:03:22 +00:00
|
|
|
302 AUE_MOUNT STD { int linux_mount(char *specialfile, \
|
2005-05-30 15:09:18 +00:00
|
|
|
char *dir, char *filesystemtype, \
|
|
|
|
l_ulong rwflag, void *data); }
|
2006-02-04 14:03:22 +00:00
|
|
|
303 AUE_ADJTIME MSTD { int linux_old_adjtimex(void); }
|
|
|
|
304 AUE_SWAPOFF MSTD { int linux_swapoff(void); }
|
|
|
|
305 AUE_O_GETDENTS STD { int linux_getdents(l_uint fd, void *dent, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_uint count); }
|
2005-07-13 20:32:42 +00:00
|
|
|
306 AUE_NULL MSTD { int linux_create_module(void); }
|
|
|
|
307 AUE_NULL MSTD { int linux_init_module(void); }
|
|
|
|
308 AUE_NULL MSTD { int linux_delete_module(void); }
|
|
|
|
309 AUE_NULL MSTD { int linux_get_kernel_syms(void); }
|
|
|
|
310 AUE_NULL MSTD { int linux_syslog(l_int type, char *buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int len); }
|
2006-02-04 14:03:22 +00:00
|
|
|
311 AUE_REBOOT MSTD { int linux_reboot(l_int magic1, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int magic2, l_uint cmd, void *arg); }
|
2006-02-04 14:03:22 +00:00
|
|
|
312 AUE_RFORK MSTD { int linux_clone(l_int flags, void *stack); }
|
|
|
|
313 AUE_USELIB STD { int linux_uselib(char *library); }
|
|
|
|
314 AUE_MLOCK MNOPROTO { int mlock(const void *addr, \
|
2005-05-30 15:09:18 +00:00
|
|
|
size_t len); }
|
2006-02-04 14:03:22 +00:00
|
|
|
315 AUE_MUNLOCK MNOPROTO { int munlock(const void *addr, \
|
2005-05-30 15:09:18 +00:00
|
|
|
size_t len); }
|
2006-02-04 14:03:22 +00:00
|
|
|
316 AUE_MLOCKALL MNOPROTO { int mlockall(int how); }
|
|
|
|
317 AUE_MUNLOCKALL MNOPROTO { int munlockall(void); }
|
2005-07-13 20:32:42 +00:00
|
|
|
318 AUE_NULL MSTD { int linux_sysinfo(void); }
|
2006-02-04 14:03:22 +00:00
|
|
|
319 AUE_SYSCTL MSTD { int linux_sysctl( \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l___sysctl_args *args); }
|
|
|
|
320 AUE_NULL UNIMPL sys_idle
|
2006-02-04 14:03:22 +00:00
|
|
|
321 AUE_UMOUNT STD { int linux_oldumount(char *path); }
|
|
|
|
322 AUE_SWAPON MNOPROTO { int swapon(char *name); }
|
2005-07-13 20:32:42 +00:00
|
|
|
323 AUE_NULL MSTD { int linux_times(struct l_times_argv *buf); }
|
2006-02-04 14:03:22 +00:00
|
|
|
324 AUE_PERSONALITY MSTD { int linux_personality(l_ulong per); }
|
|
|
|
325 AUE_SETFSUID MSTD { int linux_setfsuid(l_uid_t uid); }
|
2006-02-06 01:13:47 +00:00
|
|
|
326 AUE_SETFSGID MSTD { int linux_setfsgid(l_gid_t gid); }
|
2005-07-13 20:32:42 +00:00
|
|
|
327 AUE_NULL MSTD { int linux_ustat(l_dev_t dev, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_ustat *ubuf); }
|
2006-02-04 14:03:22 +00:00
|
|
|
328 AUE_STATFS MSTD { int linux_statfs(char *path, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_statfs_buf *buf); }
|
2006-02-04 14:03:22 +00:00
|
|
|
329 AUE_FSTATFS MSTD { int linux_fstatfs(l_uint fd, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_statfs_buf *buf); }
|
2006-02-04 14:03:22 +00:00
|
|
|
330 AUE_SCHED_SETPARAM MNOPROTO { int sched_setparam(pid_t pid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
const struct sched_param *param); }
|
2006-02-04 14:03:22 +00:00
|
|
|
331 AUE_SCHED_GETPARAM MNOPROTO { int sched_getparam(pid_t pid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct sched_param *param); }
|
2006-02-04 14:03:22 +00:00
|
|
|
332 AUE_SCHED_SETSCHEDULER MSTD { int linux_sched_setscheduler(l_pid_t pid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int policy, \
|
|
|
|
struct l_sched_param *param); }
|
2006-02-04 14:03:22 +00:00
|
|
|
333 AUE_SCHED_GETSCHEDULER MSTD { int linux_sched_getscheduler(l_pid_t pid); }
|
2005-05-30 15:09:18 +00:00
|
|
|
334 AUE_NULL MNOPROTO { int sched_yield(void); }
|
2006-02-04 14:03:22 +00:00
|
|
|
335 AUE_SCHED_GET_PRIORITY_MAX MSTD { int linux_sched_get_priority_max( \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int policy); }
|
2006-02-04 14:03:22 +00:00
|
|
|
336 AUE_SCHED_GET_PRIORITY_MIN MSTD { int linux_sched_get_priority_min( \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_int policy); }
|
2006-02-04 14:03:22 +00:00
|
|
|
337 AUE_SCHED_RR_GET_INTERVAL MNOPROTO { int sched_rr_get_interval (pid_t pid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct timespec *interval); }
|
|
|
|
338 AUE_NULL UNIMPL sys_afs_syscall
|
2005-07-13 20:32:42 +00:00
|
|
|
339 AUE_NULL MSTD { int linux_newuname( \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_newuname_t *buf); }
|
|
|
|
340 AUE_NULL MNOPROTO { int nanosleep( \
|
|
|
|
const struct timespec *rqtp, \
|
|
|
|
struct timespec *rmtp); }
|
2005-07-13 20:32:42 +00:00
|
|
|
341 AUE_NULL MSTD { int linux_mremap(l_ulong addr, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_ulong old_len, l_ulong new_len, \
|
|
|
|
l_ulong flags, l_ulong new_addr); }
|
2005-07-13 20:32:42 +00:00
|
|
|
342 AUE_NULL MSTD { int linux_nfsservctl(void); }
|
2006-02-04 14:03:22 +00:00
|
|
|
343 AUE_SETRESUID MNOPROTO { int setresuid(uid_t ruid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
uid_t euid, uid_t suid); }
|
2006-02-04 14:03:22 +00:00
|
|
|
344 AUE_GETRESUID MNOPROTO { int getresuid(uid_t *ruid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
uid_t *euid, uid_t *suid); }
|
2005-07-13 20:32:42 +00:00
|
|
|
345 AUE_NULL MSTD { int linux_pciconfig_read(void); }
|
|
|
|
346 AUE_NULL MSTD { int linux_pciconfig_write(void); }
|
|
|
|
347 AUE_NULL MSTD { int linux_query_module(void); }
|
2006-02-04 14:03:22 +00:00
|
|
|
348 AUE_PRCTL MSTD { int linux_prctl(void); }
|
|
|
|
349 AUE_PREAD MSTD { int linux_pread(l_uint fd, char *buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_size_t nbyte, l_loff_t offset); }
|
2006-02-04 14:03:22 +00:00
|
|
|
350 AUE_PWRITE MSTD { int linux_pwrite(l_uint fd, char *buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_size_t nbyte, l_loff_t offset); }
|
2005-07-13 20:32:42 +00:00
|
|
|
351 AUE_NULL MSTD { int linux_rt_sigreturn(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
352 AUE_NULL MSTD { int linux_rt_sigaction(l_int sig, \
|
|
|
|
l_sigaction_t *act, l_sigaction_t *oact, \
|
|
|
|
l_size_t sigsetsize); }
|
|
|
|
353 AUE_NULL MSTD { int linux_rt_sigprocmask(l_int how, \
|
|
|
|
l_sigset_t *mask, l_sigset_t *omask, \
|
|
|
|
l_size_t sigsetsize); }
|
2005-07-13 20:32:42 +00:00
|
|
|
354 AUE_NULL MSTD { int linux_rt_sigpending(void); }
|
|
|
|
355 AUE_NULL MSTD { int linux_rt_sigtimedwait(void); }
|
|
|
|
356 AUE_NULL MSTD { int linux_rt_sigqueueinfo(void); }
|
2005-05-30 15:09:18 +00:00
|
|
|
357 AUE_NULL MSTD { int linux_rt_sigsuspend(l_sigset_t \
|
|
|
|
*newset, l_size_t sigsetsize); }
|
2006-02-04 14:03:22 +00:00
|
|
|
358 AUE_SELECT MSTD { int linux_select(l_int nfds, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_fd_set *readfds, l_fd_set *writefds, \
|
|
|
|
l_fd_set *exceptfds, \
|
|
|
|
struct l_timeval *timeout); }
|
|
|
|
359 AUE_NULL MNOPROTO { int gettimeofday( \
|
|
|
|
struct timeval *tp, \
|
|
|
|
struct timezone *tzp); }
|
2006-02-04 14:03:22 +00:00
|
|
|
360 AUE_SETTIMEOFDAY MNOPROTO { int settimeofday( \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct timeval *tp, \
|
|
|
|
struct timezone *tzp); }
|
2006-02-04 14:03:22 +00:00
|
|
|
361 AUE_GETITIMER MSTD { int linux_getitimer(l_int which, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_itimerval *itv); }
|
2006-02-04 14:03:22 +00:00
|
|
|
362 AUE_SETITIMER MSTD { int linux_setitimer(l_int which, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_itimerval *itv, \
|
|
|
|
struct l_itimerval *oitv); }
|
2006-02-04 14:03:22 +00:00
|
|
|
363 AUE_UTIMES MSTD { int linux_utimes(char *fname, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct l_timeval *times); }
|
2006-02-04 14:03:22 +00:00
|
|
|
364 AUE_GETRUSAGE MNOPROTO { int getrusage(int who, \
|
2005-05-30 15:09:18 +00:00
|
|
|
struct rusage *rusage); }
|
2006-02-04 14:03:22 +00:00
|
|
|
365 AUE_WAIT4 MSTD { int linux_wait4(l_pid_t pid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_uint *status, l_int options, \
|
|
|
|
struct l_rusage *rusage); }
|
2006-02-04 14:03:22 +00:00
|
|
|
366 AUE_ADJTIME MSTD { int linux_adjtimex(void); }
|
|
|
|
367 AUE_GETCWD MSTD { int linux_getcwd(char *buf, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_ulong bufsize); }
|
2006-02-04 14:03:22 +00:00
|
|
|
368 AUE_CAPGET MSTD { int linux_capget(void); }
|
|
|
|
369 AUE_CAPSET MSTD { int linux_capset(void); }
|
|
|
|
370 AUE_SENDFILE MSTD { int linux_sendfile(void); }
|
|
|
|
371 AUE_SETRESGID MNOPROTO { int setresgid(gid_t rgid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
gid_t egid, gid_t sgid); }
|
2006-02-04 14:03:22 +00:00
|
|
|
372 AUE_GETRESGID MNOPROTO { int getresgid(gid_t *rgid, \
|
2005-05-30 15:09:18 +00:00
|
|
|
gid_t *egid, gid_t *sgid); }
|
|
|
|
373 AUE_NULL UNIMPL sys_dipc
|
2006-02-04 14:03:22 +00:00
|
|
|
374 AUE_PIVOT_ROOT MSTD { int linux_pivot_root(char *new_root, \
|
2005-05-30 15:09:18 +00:00
|
|
|
char *put_old); }
|
2006-02-04 14:03:22 +00:00
|
|
|
375 AUE_MINCORE MSTD { int linux_mincore(l_ulong start, \
|
2005-05-30 15:09:18 +00:00
|
|
|
l_size_t len, u_char *vec); }
|
2005-07-13 20:32:42 +00:00
|
|
|
376 AUE_NULL MSTD { int linux_pciconfig_iobase(void); }
|
2006-02-04 14:03:22 +00:00
|
|
|
377 AUE_O_GETDENTS STD { int linux_getdents64(l_uint fd, void *dirent, l_uint count); }
|