Deleted Added
full compact
syscalls.master (155374) syscalls.master (156842)
1 $FreeBSD: head/sys/i386/linux/syscalls.master 155374 2006-02-06 01:40:30Z rwatson $
1 $FreeBSD: head/sys/i386/linux/syscalls.master 156842 2006-03-18 18:20:17Z netchild $
2
3; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
4; System call name/number master file (or rather, slave, from LINUX).
5; Processed to create linux_sysent.c, linux_proto.h and linux_syscall.h.
6
7; Columns: number audit type nargs name alt{name,tag,rtyp}/comments
8; number system call number, must be in order
9; audit the audit event associated with the system call
10; A value of AUE_NULL means no auditing, but it also means that
11; there is no audit event for the call at this time. For the
12; case where the event exists, but we don't want auditing, the
13; event should be #defined to AUE_NULL in audit_kevents.h.
2
3; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
4; System call name/number master file (or rather, slave, from LINUX).
5; Processed to create linux_sysent.c, linux_proto.h and linux_syscall.h.
6
7; Columns: number audit type nargs name alt{name,tag,rtyp}/comments
8; number system call number, must be in order
9; audit the audit event associated with the system call
10; A value of AUE_NULL means no auditing, but it also means that
11; there is no audit event for the call at this time. For the
12; case where the event exists, but we don't want auditing, the
13; event should be #defined to AUE_NULL in audit_kevents.h.
14; type one of STD, OBSOL, UNIMPL, COMPAT
14; type one of STD, OBSOL, UNIMPL
15; name psuedo-prototype of syscall routine
16; If one of the following alts is different, then all appear:
17; audit the audit event associated with the system call
18; A value of AUE_NULL means no auditing, but it also means that
19; there is no audit event for the call at this time. For the
20; case where the event exists, but we don't want auditing, the
21; event should be #defined to AUE_NULL in audit_kevents.h.
22; altname name of system call if different
23; alttag name of args struct tag if different from [o]`name'"_args"
24; altrtyp return type if not int (bogus - syscalls always return int)
25; for UNIMPL/OBSOL, name continues with comments
26
27; types:
28; AUE_NULL STD always included
15; name psuedo-prototype of syscall routine
16; If one of the following alts is different, then all appear:
17; audit the audit event associated with the system call
18; A value of AUE_NULL means no auditing, but it also means that
19; there is no audit event for the call at this time. For the
20; case where the event exists, but we don't want auditing, the
21; event should be #defined to AUE_NULL in audit_kevents.h.
22; altname name of system call if different
23; alttag name of args struct tag if different from [o]`name'"_args"
24; altrtyp return type if not int (bogus - syscalls always return int)
25; for UNIMPL/OBSOL, name continues with comments
26
27; types:
28; AUE_NULL STD always included
29; COMPAT included on COMPAT #ifdef
30; LIBCOMPAT included on COMPAT #ifdef, and placed in syscall.h
31; OBSOL obsolete, not included in system, only specifies name
32; AUE_NULL UNIMPL not implemented, placeholder only
33
29; OBSOL obsolete, not included in system, only specifies name
30; AUE_NULL UNIMPL not implemented, placeholder only
31
34#include "opt_compat.h"
35#include <sys/param.h>
36#include <sys/sysent.h>
37#include <sys/sysproto.h>
38#include <compat/linux/linux_sysproto.h>
39#include <i386/linux/linux.h>
40#include <i386/linux/linux_proto.h>
41
42; Isn't pretty, but there seems to be no other way to trap nosys
43#define nosys linux_nosys
44
45; #ifdef's, etc. may be included, and are copied to the output files.
46
470 AUE_NULL UNIMPL setup
481 AUE_EXIT MNOPROTO { void sys_exit(int rval); } exit \
49 sys_exit_args void
502 AUE_FORK MSTD { int linux_fork(void); }
513 AUE_NULL MNOPROTO { int read(int fd, char *buf, \
52 u_int nbyte); }
534 AUE_NULL MNOPROTO { int write(int fd, char *buf, \
54 u_int nbyte); }
555 AUE_OPEN_RWTC MSTD { int linux_open(char *path, l_int flags, \
56 l_int mode); }
576 AUE_CLOSE MNOPROTO { int close(int fd); }
587 AUE_WAIT4 MSTD { int linux_waitpid(l_pid_t pid, \
59 l_int *status, l_int options); }
608 AUE_O_CREAT MSTD { int linux_creat(char *path, \
61 l_int mode); }
629 AUE_LINK MSTD { int linux_link(char *path, char *to); }
6310 AUE_UNLINK MSTD { int linux_unlink(char *path); }
6411 AUE_EXECVE MSTD { int linux_execve(char *path, char **argp, \
65 char **envp); }
6612 AUE_CHDIR MSTD { int linux_chdir(char *path); }
6713 AUE_NULL MSTD { int linux_time(l_time_t *tm); }
6814 AUE_MKNOD MSTD { int linux_mknod(char *path, l_int mode, \
69 l_dev_t dev); }
7015 AUE_CHMOD MSTD { int linux_chmod(char *path, \
71 l_mode_t mode); }
7216 AUE_LCHOWN MSTD { int linux_lchown16(char *path, \
73 l_uid16_t uid, l_gid16_t gid); }
7417 AUE_NULL UNIMPL break
7518 AUE_STAT MSTD { int linux_stat(char *path, \
32#include <sys/param.h>
33#include <sys/sysent.h>
34#include <sys/sysproto.h>
35#include <compat/linux/linux_sysproto.h>
36#include <i386/linux/linux.h>
37#include <i386/linux/linux_proto.h>
38
39; Isn't pretty, but there seems to be no other way to trap nosys
40#define nosys linux_nosys
41
42; #ifdef's, etc. may be included, and are copied to the output files.
43
440 AUE_NULL UNIMPL setup
451 AUE_EXIT MNOPROTO { void sys_exit(int rval); } exit \
46 sys_exit_args void
472 AUE_FORK MSTD { int linux_fork(void); }
483 AUE_NULL MNOPROTO { int read(int fd, char *buf, \
49 u_int nbyte); }
504 AUE_NULL MNOPROTO { int write(int fd, char *buf, \
51 u_int nbyte); }
525 AUE_OPEN_RWTC MSTD { int linux_open(char *path, l_int flags, \
53 l_int mode); }
546 AUE_CLOSE MNOPROTO { int close(int fd); }
557 AUE_WAIT4 MSTD { int linux_waitpid(l_pid_t pid, \
56 l_int *status, l_int options); }
578 AUE_O_CREAT MSTD { int linux_creat(char *path, \
58 l_int mode); }
599 AUE_LINK MSTD { int linux_link(char *path, char *to); }
6010 AUE_UNLINK MSTD { int linux_unlink(char *path); }
6111 AUE_EXECVE MSTD { int linux_execve(char *path, char **argp, \
62 char **envp); }
6312 AUE_CHDIR MSTD { int linux_chdir(char *path); }
6413 AUE_NULL MSTD { int linux_time(l_time_t *tm); }
6514 AUE_MKNOD MSTD { int linux_mknod(char *path, l_int mode, \
66 l_dev_t dev); }
6715 AUE_CHMOD MSTD { int linux_chmod(char *path, \
68 l_mode_t mode); }
6916 AUE_LCHOWN MSTD { int linux_lchown16(char *path, \
70 l_uid16_t uid, l_gid16_t gid); }
7117 AUE_NULL UNIMPL break
7218 AUE_STAT MSTD { int linux_stat(char *path, \
76 struct ostat *up); }
73 struct linux_stat *up); }
7719 AUE_LSEEK MSTD { int linux_lseek(l_uint fdes, l_off_t off, \
78 l_int whence); }
7920 AUE_GETPID MSTD { int linux_getpid(void); }
8021 AUE_MOUNT STD { int linux_mount(char *specialfile, \
81 char *dir, char *filesystemtype, \
82 l_ulong rwflag, void *data); }
8322 AUE_UMOUNT STD { int linux_oldumount(char *path); }
8423 AUE_SETUID MSTD { int linux_setuid16(l_uid16_t uid); }
8524 AUE_GETUID MSTD { int linux_getuid16(void); }
8625 AUE_SETTIMEOFDAY MSTD { int linux_stime(void); }
8726 AUE_PTRACE MSTD { int linux_ptrace(l_long req, l_long pid, \
88 l_long addr, l_long data); }
8927 AUE_NULL MSTD { int linux_alarm(l_uint secs); }
9028 AUE_FSTAT MSTD { int linux_fstat(l_uint fd, \
7419 AUE_LSEEK MSTD { int linux_lseek(l_uint fdes, l_off_t off, \
75 l_int whence); }
7620 AUE_GETPID MSTD { int linux_getpid(void); }
7721 AUE_MOUNT STD { int linux_mount(char *specialfile, \
78 char *dir, char *filesystemtype, \
79 l_ulong rwflag, void *data); }
8022 AUE_UMOUNT STD { int linux_oldumount(char *path); }
8123 AUE_SETUID MSTD { int linux_setuid16(l_uid16_t uid); }
8224 AUE_GETUID MSTD { int linux_getuid16(void); }
8325 AUE_SETTIMEOFDAY MSTD { int linux_stime(void); }
8426 AUE_PTRACE MSTD { int linux_ptrace(l_long req, l_long pid, \
85 l_long addr, l_long data); }
8627 AUE_NULL MSTD { int linux_alarm(l_uint secs); }
8728 AUE_FSTAT MSTD { int linux_fstat(l_uint fd, \
91 struct ostat *up); }
88 struct linux_stat *up); }
9229 AUE_NULL MSTD { int linux_pause(void); }
9330 AUE_UTIME MSTD { int linux_utime(char *fname, \
94 struct l_utimbuf *times); }
9531 AUE_NULL UNIMPL stty
9632 AUE_NULL UNIMPL gtty
9733 AUE_ACCESS MSTD { int linux_access(char *path, l_int flags); }
9834 AUE_NICE MSTD { int linux_nice(l_int inc); }
9935 AUE_NULL UNIMPL ftime
10036 AUE_SYNC MNOPROTO { int sync(void); }
10137 AUE_KILL MSTD { int linux_kill(l_int pid, l_int signum); }
10238 AUE_RENAME MSTD { int linux_rename(char *from, char *to); }
10339 AUE_MKDIR MSTD { int linux_mkdir(char *path, l_int mode); }
10440 AUE_RMDIR MSTD { int linux_rmdir(char *path); }
10541 AUE_DUP MNOPROTO { int dup(u_int fd); }
10642 AUE_PIPE MSTD { int linux_pipe(l_ulong *pipefds); }
10743 AUE_NULL MSTD { int linux_times(struct l_times_argv *buf); }
10844 AUE_NULL UNIMPL prof
10945 AUE_NULL STD { int linux_brk(l_ulong dsend); }
11046 AUE_SETGID MSTD { int linux_setgid16(l_gid16_t gid); }
11147 AUE_GETGID MSTD { int linux_getgid16(void); }
11248 AUE_NULL MSTD { int linux_signal(l_int sig, \
113 l_handler_t handler); }
11449 AUE_GETEUID MSTD { int linux_geteuid16(void); }
11550 AUE_GETEGID MSTD { int linux_getegid16(void); }
11651 AUE_ACCT MNOPROTO { int acct(char *path); }
11752 AUE_UMOUNT STD { int linux_umount(char *path, l_int flags); }
11853 AUE_NULL UNIMPL lock
11954 AUE_IOCTL STD { int linux_ioctl(l_uint fd, l_uint cmd, \
120 l_ulong arg); }
12155 AUE_FCNTL MSTD { int linux_fcntl(l_uint fd, l_uint cmd, \
122 l_ulong arg); }
12356 AUE_NULL UNIMPL mpx
12457 AUE_SETPGRP MNOPROTO { int setpgid(int pid, int pgid); }
12558 AUE_NULL UNIMPL ulimit
12659 AUE_NULL MSTD { int linux_olduname(void); }
12760 AUE_UMASK MNOPROTO { int umask(int newmask); }
12861 AUE_CHROOT MNOPROTO { int chroot(char *path); }
12962 AUE_NULL MSTD { int linux_ustat(l_dev_t dev, \
130 struct l_ustat *ubuf); }
13163 AUE_DUP2 MNOPROTO { int dup2(u_int from, u_int to); }
13264 AUE_GETPPID MNOPROTO { int getppid(void); }
13365 AUE_GETPGRP MNOPROTO { int getpgrp(void); }
13466 AUE_SETSID MNOPROTO { int setsid(void); }
13567 AUE_NULL MSTD { int linux_sigaction(l_int sig, \
136 l_osigaction_t *nsa, \
137 l_osigaction_t *osa); }
13868 AUE_NULL MSTD { int linux_sgetmask(void); }
13969 AUE_NULL MSTD { int linux_ssetmask(l_osigset_t mask); }
14070 AUE_SETREUID MSTD { int linux_setreuid16(l_uid16_t ruid, \
141 l_uid16_t euid); }
14271 AUE_SETREGID MSTD { int linux_setregid16(l_gid16_t rgid, \
143 l_gid16_t egid); }
14472 AUE_NULL MSTD { int linux_sigsuspend(l_int hist0, \
145 l_int hist1, l_osigset_t mask); }
14673 AUE_NULL MSTD { int linux_sigpending(l_osigset_t *mask); }
8929 AUE_NULL MSTD { int linux_pause(void); }
9030 AUE_UTIME MSTD { int linux_utime(char *fname, \
91 struct l_utimbuf *times); }
9231 AUE_NULL UNIMPL stty
9332 AUE_NULL UNIMPL gtty
9433 AUE_ACCESS MSTD { int linux_access(char *path, l_int flags); }
9534 AUE_NICE MSTD { int linux_nice(l_int inc); }
9635 AUE_NULL UNIMPL ftime
9736 AUE_SYNC MNOPROTO { int sync(void); }
9837 AUE_KILL MSTD { int linux_kill(l_int pid, l_int signum); }
9938 AUE_RENAME MSTD { int linux_rename(char *from, char *to); }
10039 AUE_MKDIR MSTD { int linux_mkdir(char *path, l_int mode); }
10140 AUE_RMDIR MSTD { int linux_rmdir(char *path); }
10241 AUE_DUP MNOPROTO { int dup(u_int fd); }
10342 AUE_PIPE MSTD { int linux_pipe(l_ulong *pipefds); }
10443 AUE_NULL MSTD { int linux_times(struct l_times_argv *buf); }
10544 AUE_NULL UNIMPL prof
10645 AUE_NULL STD { int linux_brk(l_ulong dsend); }
10746 AUE_SETGID MSTD { int linux_setgid16(l_gid16_t gid); }
10847 AUE_GETGID MSTD { int linux_getgid16(void); }
10948 AUE_NULL MSTD { int linux_signal(l_int sig, \
110 l_handler_t handler); }
11149 AUE_GETEUID MSTD { int linux_geteuid16(void); }
11250 AUE_GETEGID MSTD { int linux_getegid16(void); }
11351 AUE_ACCT MNOPROTO { int acct(char *path); }
11452 AUE_UMOUNT STD { int linux_umount(char *path, l_int flags); }
11553 AUE_NULL UNIMPL lock
11654 AUE_IOCTL STD { int linux_ioctl(l_uint fd, l_uint cmd, \
117 l_ulong arg); }
11855 AUE_FCNTL MSTD { int linux_fcntl(l_uint fd, l_uint cmd, \
119 l_ulong arg); }
12056 AUE_NULL UNIMPL mpx
12157 AUE_SETPGRP MNOPROTO { int setpgid(int pid, int pgid); }
12258 AUE_NULL UNIMPL ulimit
12359 AUE_NULL MSTD { int linux_olduname(void); }
12460 AUE_UMASK MNOPROTO { int umask(int newmask); }
12561 AUE_CHROOT MNOPROTO { int chroot(char *path); }
12662 AUE_NULL MSTD { int linux_ustat(l_dev_t dev, \
127 struct l_ustat *ubuf); }
12863 AUE_DUP2 MNOPROTO { int dup2(u_int from, u_int to); }
12964 AUE_GETPPID MNOPROTO { int getppid(void); }
13065 AUE_GETPGRP MNOPROTO { int getpgrp(void); }
13166 AUE_SETSID MNOPROTO { int setsid(void); }
13267 AUE_NULL MSTD { int linux_sigaction(l_int sig, \
133 l_osigaction_t *nsa, \
134 l_osigaction_t *osa); }
13568 AUE_NULL MSTD { int linux_sgetmask(void); }
13669 AUE_NULL MSTD { int linux_ssetmask(l_osigset_t mask); }
13770 AUE_SETREUID MSTD { int linux_setreuid16(l_uid16_t ruid, \
138 l_uid16_t euid); }
13971 AUE_SETREGID MSTD { int linux_setregid16(l_gid16_t rgid, \
140 l_gid16_t egid); }
14172 AUE_NULL MSTD { int linux_sigsuspend(l_int hist0, \
142 l_int hist1, l_osigset_t mask); }
14373 AUE_NULL MSTD { int linux_sigpending(l_osigset_t *mask); }
14774 AUE_SYSCTL MNOPROTO { int osethostname(char *hostname, \
148 u_int len); } osethostname \
149 sethostname_args int
14474 AUE_SYSCTL MNOPROTO { int linux_sethostname(char *hostname, \
145 u_int len); }
15075 AUE_SETRLIMIT MSTD { int linux_setrlimit(l_uint resource, \
151 struct l_rlimit *rlim); }
15276 AUE_GETRLIMIT MSTD { int linux_old_getrlimit(l_uint resource, \
153 struct l_rlimit *rlim); }
15477 AUE_GETRUSAGE MNOPROTO { int getrusage(int who, \
155 struct rusage *rusage); }
15678 AUE_NULL MNOPROTO { int gettimeofday( \
157 struct timeval *tp, \
158 struct timezone *tzp); }
15979 AUE_SETTIMEOFDAY MNOPROTO { int settimeofday( \
160 struct timeval *tp, \
161 struct timezone *tzp); }
16280 AUE_GETGROUPS MSTD { int linux_getgroups16(l_uint gidsetsize, \
163 l_gid16_t *gidset); }
16481 AUE_SETGROUPS MSTD { int linux_setgroups16(l_uint gidsetsize, \
165 l_gid16_t *gidset); }
16682 AUE_SELECT MSTD { int linux_old_select( \
167 struct l_old_select_argv *ptr); }
16883 AUE_SYMLINK MSTD { int linux_symlink(char *path, char *to); }
14675 AUE_SETRLIMIT MSTD { int linux_setrlimit(l_uint resource, \
147 struct l_rlimit *rlim); }
14876 AUE_GETRLIMIT MSTD { int linux_old_getrlimit(l_uint resource, \
149 struct l_rlimit *rlim); }
15077 AUE_GETRUSAGE MNOPROTO { int getrusage(int who, \
151 struct rusage *rusage); }
15278 AUE_NULL MNOPROTO { int gettimeofday( \
153 struct timeval *tp, \
154 struct timezone *tzp); }
15579 AUE_SETTIMEOFDAY MNOPROTO { int settimeofday( \
156 struct timeval *tp, \
157 struct timezone *tzp); }
15880 AUE_GETGROUPS MSTD { int linux_getgroups16(l_uint gidsetsize, \
159 l_gid16_t *gidset); }
16081 AUE_SETGROUPS MSTD { int linux_setgroups16(l_uint gidsetsize, \
161 l_gid16_t *gidset); }
16282 AUE_SELECT MSTD { int linux_old_select( \
163 struct l_old_select_argv *ptr); }
16483 AUE_SYMLINK MSTD { int linux_symlink(char *path, char *to); }
16984 AUE_STAT MNOPROTO { int ostat(char *path, struct ostat *up); }
16584 AUE_STAT MNOPROTO { int linux_stat(char *path, struct ostat *up); }
17085 AUE_READLINK MSTD { int linux_readlink(char *name, char *buf, \
171 l_int count); }
17286 AUE_USELIB STD { int linux_uselib(char *library); }
17387 AUE_SWAPON MNOPROTO { int swapon(char *name); }
17488 AUE_REBOOT MSTD { int linux_reboot(l_int magic1, \
175 l_int magic2, l_uint cmd, void *arg); }
17689 AUE_O_GETDENTS STD { int linux_readdir(l_uint fd, \
177 struct l_dirent *dent, l_uint count); }
17890 AUE_MMAP MSTD { int linux_mmap(struct l_mmap_argv *ptr); }
17991 AUE_MUNMAP MNOPROTO { int munmap(caddr_t addr, int len); }
18092 AUE_TRUNCATE MSTD { int linux_truncate(char *path, \
181 l_ulong length); }
16685 AUE_READLINK MSTD { int linux_readlink(char *name, char *buf, \
167 l_int count); }
16886 AUE_USELIB STD { int linux_uselib(char *library); }
16987 AUE_SWAPON MNOPROTO { int swapon(char *name); }
17088 AUE_REBOOT MSTD { int linux_reboot(l_int magic1, \
171 l_int magic2, l_uint cmd, void *arg); }
17289 AUE_O_GETDENTS STD { int linux_readdir(l_uint fd, \
173 struct l_dirent *dent, l_uint count); }
17490 AUE_MMAP MSTD { int linux_mmap(struct l_mmap_argv *ptr); }
17591 AUE_MUNMAP MNOPROTO { int munmap(caddr_t addr, int len); }
17692 AUE_TRUNCATE MSTD { int linux_truncate(char *path, \
177 l_ulong length); }
18293 AUE_FTRUNCATE MNOPROTO { int oftruncate(int fd, long length); }
17893 AUE_FTRUNCATE MNOPROTO { int linux_ftruncate(int fd, long length); }
18394 AUE_FCHMOD MNOPROTO { int fchmod(int fd, int mode); }
18495 AUE_FCHOWN MNOPROTO { int fchown(int fd, int uid, int gid); }
18596 AUE_GETPRIORITY MSTD { int linux_getpriority(int which, int who); }
18697 AUE_SETPRIORITY MNOPROTO { int setpriority(int which, int who, \
187 int prio); }
18898 AUE_AUE_PROFILE UNIMPL profil
18999 AUE_STATFS MSTD { int linux_statfs(char *path, \
190 struct l_statfs_buf *buf); }
191100 AUE_FSTATFS MSTD { int linux_fstatfs(l_uint fd, \
192 struct l_statfs_buf *buf); }
193101 AUE_NULL MSTD { int linux_ioperm(l_ulong start, \
194 l_ulong length, l_int enable); }
195102 AUE_NULL MSTD { int linux_socketcall(l_int what, \
196 l_ulong args); }
197103 AUE_NULL MSTD { int linux_syslog(l_int type, char *buf, \
198 l_int len); }
199104 AUE_SETITIMER MSTD { int linux_setitimer(l_int which, \
200 struct l_itimerval *itv, \
201 struct l_itimerval *oitv); }
202105 AUE_GETITIMER MSTD { int linux_getitimer(l_int which, \
203 struct l_itimerval *itv); }
204106 AUE_STAT MSTD { int linux_newstat(char *path, \
205 struct l_newstat *buf); }
206107 AUE_LSTAT MSTD { int linux_newlstat(char *path, \
207 struct l_newstat *buf); }
208108 AUE_FSTAT MSTD { int linux_newfstat(l_uint fd, \
209 struct l_newstat *buf); }
210109 AUE_NULL MSTD { int linux_uname(void); }
211110 AUE_NULL MSTD { int linux_iopl(l_ulong level); }
212111 AUE_NULL MSTD { int linux_vhangup(void); }
213112 AUE_NULL UNIMPL idle
214113 AUE_NULL MSTD { int linux_vm86old(void); }
215114 AUE_WAIT4 MSTD { int linux_wait4(l_pid_t pid, \
216 l_uint *status, l_int options, \
217 struct l_rusage *rusage); }
218115 AUE_SWAPOFF MSTD { int linux_swapoff(void); }
219116 AUE_NULL MSTD { int linux_sysinfo(struct l_sysinfo *info); }
220117 AUE_NULL STD { int linux_ipc(l_uint what, l_int arg1, \
221 l_int arg2, l_int arg3, void *ptr, \
222 l_long arg5); }
223118 AUE_FSYNC MNOPROTO { int fsync(int fd); }
224119 AUE_SIGRETURN MSTD { int linux_sigreturn( \
225 struct l_sigframe *sfp); }
226120 AUE_RFORK MSTD { int linux_clone(l_int flags, void *stack); }
227121 AUE_SYSCTL MNOPROTO { int setdomainname(char *name, \
228 int len); }
229122 AUE_NULL MSTD { int linux_newuname( \
230 struct l_new_utsname *buf); }
231123 AUE_NULL MSTD { int linux_modify_ldt(l_int func, \
232 void *ptr, l_ulong bytecount); }
233124 AUE_ADJTIME MSTD { int linux_adjtimex(void); }
234125 AUE_MPROTECT MNOPROTO { int mprotect(caddr_t addr, int len, \
235 int prot); }
236126 AUE_SIGPROCMASK MSTD { int linux_sigprocmask(l_int how, \
237 l_osigset_t *mask, l_osigset_t *omask); }
238127 AUE_NULL MSTD { int linux_create_module(void); }
239128 AUE_NULL MSTD { int linux_init_module(void); }
240129 AUE_NULL MSTD { int linux_delete_module(void); }
241130 AUE_NULL MSTD { int linux_get_kernel_syms(void); }
242131 AUE_QUOTACTL MSTD { int linux_quotactl(void); }
243132 AUE_GETPGID MNOPROTO { int getpgid(int pid); }
244133 AUE_FCHDIR MNOPROTO { int fchdir(int fd); }
245134 AUE_BDFLUSH MSTD { int linux_bdflush(void); }
246135 AUE_NULL MSTD { int linux_sysfs(l_int option, \
247 l_ulong arg1, l_ulong arg2); }
248136 AUE_PERSONALITY MSTD { int linux_personality(l_ulong per); }
249137 AUE_NULL UNIMPL afs_syscall
250138 AUE_SETFSUID MSTD { int linux_setfsuid16(l_uid16_t uid); }
251139 AUE_SETFSGID MSTD { int linux_setfsgid16(l_gid16_t gid); }
252140 AUE_LSEEK MSTD { int linux_llseek(l_int fd, l_ulong ohigh, \
253 l_ulong olow, l_loff_t *res, \
254 l_uint whence); }
255141 AUE_O_GETDENTS STD { int linux_getdents(l_uint fd, void *dent, \
256 l_uint count); }
257142 AUE_SELECT MSTD { int linux_select(l_int nfds, \
258 l_fd_set *readfds, l_fd_set *writefds, \
259 l_fd_set *exceptfds, \
260 struct l_timeval *timeout); }
261143 AUE_FLOCK MNOPROTO { int flock(int fd, int how); }
262144 AUE_MSYNC MSTD { int linux_msync(l_ulong addr, \
263 l_size_t len, l_int fl); }
264145 AUE_READV MNOPROTO { int readv(int fd, struct iovec *iovp, \
265 u_int iovcnt); }
266146 AUE_WRITEV MNOPROTO { int writev(int fd, struct iovec *iovp, \
267 u_int iovcnt); }
268147 AUE_GETSID MSTD { int linux_getsid(l_pid_t pid); }
269148 AUE_NULL MSTD { int linux_fdatasync(l_uint fd); }
270149 AUE_SYSCTL MSTD { int linux_sysctl( \
271 struct l___sysctl_args *args); }
272150 AUE_MLOCK MNOPROTO { int mlock(const void *addr, size_t len); }
273151 AUE_MUNLOCK MNOPROTO { int munlock(const void *addr, size_t len); }
274152 AUE_MLOCKALL MNOPROTO { int mlockall(int how); }
275153 AUE_MUNLOCKALL MNOPROTO { int munlockall(void); }
276154 AUE_SCHED_SETPARAM MNOPROTO { int sched_setparam(pid_t pid, \
277 const struct sched_param *param); }
278155 AUE_SCHED_GETPARAM MNOPROTO { int sched_getparam(pid_t pid, \
279 struct sched_param *param); }
280156 AUE_SCHED_SETSCHEDULER MSTD { int linux_sched_setscheduler(l_pid_t pid, \
281 l_int policy, \
282 struct l_sched_param *param); }
283157 AUE_SCHED_GETSCHEDULER MSTD { int linux_sched_getscheduler(l_pid_t pid); }
284158 AUE_NULL MNOPROTO { int sched_yield(void); }
285159 AUE_SCHED_GET_PRIORITY_MAX MSTD { int linux_sched_get_priority_max( \
286 l_int policy); }
287160 AUE_SCHED_GET_PRIORITY_MIN MSTD { int linux_sched_get_priority_min( \
288 l_int policy); }
289161 AUE_SCHED_RR_GET_INTERVAL MNOPROTO { int sched_rr_get_interval(l_pid_t pid, \
290 struct l_timespec *interval); }
291162 AUE_NULL MNOPROTO { int nanosleep( \
292 const struct timespec *rqtp, \
293 struct timespec *rmtp); }
294163 AUE_NULL MSTD { int linux_mremap(l_ulong addr, \
295 l_ulong old_len, l_ulong new_len, \
296 l_ulong flags, l_ulong new_addr); }
297164 AUE_SETRESUID MSTD { int linux_setresuid16(l_uid16_t ruid, \
298 l_uid16_t euid, l_uid16_t suid); }
299165 AUE_GETRESUID MSTD { int linux_getresuid16(l_uid16_t *ruid, \
300 l_uid16_t *euid, l_uid16_t *suid); }
301166 AUE_NULL MSTD { int linux_vm86(void); }
302167 AUE_NULL MSTD { int linux_query_module(void); }
303168 AUE_POLL MNOPROTO { int poll(struct pollfd*, \
304 unsigned int nfds, long timeout); }
305169 AUE_NULL MSTD { int linux_nfsservctl(void); }
306170 AUE_SETRESGID MSTD { int linux_setresgid16(l_gid16_t rgid, \
307 l_gid16_t egid, l_gid16_t sgid); }
308171 AUE_GETRESGID MSTD { int linux_getresgid16(l_gid16_t *rgid, \
309 l_gid16_t *egid, l_gid16_t *sgid); }
310172 AUE_PRCTL MSTD { int linux_prctl(void); }
311173 AUE_NULL MSTD { int linux_rt_sigreturn( \
312 struct l_ucontext *ucp); }
313174 AUE_NULL MSTD { int linux_rt_sigaction(l_int sig, \
314 l_sigaction_t *act, l_sigaction_t *oact, \
315 l_size_t sigsetsize); }
316175 AUE_NULL MSTD { int linux_rt_sigprocmask(l_int how, \
317 l_sigset_t *mask, l_sigset_t *omask, \
318 l_size_t sigsetsize); }
319176 AUE_NULL MSTD { int linux_rt_sigpending(void); }
320177 AUE_NULL MSTD { int linux_rt_sigtimedwait(void); }
321178 AUE_NULL MSTD { int linux_rt_sigqueueinfo(void); }
322179 AUE_NULL MSTD { int linux_rt_sigsuspend( \
323 l_sigset_t *newset, \
324 l_size_t sigsetsize); }
325180 AUE_PREAD MSTD { int linux_pread(l_uint fd, char *buf, \
326 l_size_t nbyte, l_loff_t offset); }
327181 AUE_PWRITE MSTD { int linux_pwrite(l_uint fd, char *buf, \
328 l_size_t nbyte, l_loff_t offset); }
329182 AUE_CHOWN MSTD { int linux_chown16(char *path, \
330 l_uid16_t uid, l_gid16_t gid); }
331183 AUE_GETCWD MSTD { int linux_getcwd(char *buf, \
332 l_ulong bufsize); }
333184 AUE_CAPGET MSTD { int linux_capget(void); }
334185 AUE_CAPSET MSTD { int linux_capset(void); }
335186 AUE_NULL MSTD { int linux_sigaltstack(l_stack_t *uss, \
336 l_stack_t *uoss); }
337187 AUE_SENDFILE MSTD { int linux_sendfile(void); }
338188 AUE_GETPMSG UNIMPL getpmsg
339189 AUE_PUTPMSG UNIMPL putpmsg
340190 AUE_VFORK MSTD { int linux_vfork(void); }
341191 AUE_GETRLIMIT MSTD { int linux_getrlimit(l_uint resource, \
342 struct l_rlimit *rlim); }
343192 AUE_MMAP MSTD { int linux_mmap2(l_ulong addr, l_ulong len, \
344 l_ulong prot, l_ulong flags, l_ulong fd, \
345 l_ulong pgoff); }
346193 AUE_TRUNCATE MSTD { int linux_truncate64(char *path, \
347 l_loff_t length); }
348194 AUE_FTRUNCATE MSTD { int linux_ftruncate64(l_uint fd, \
349 l_loff_t length); }
350195 AUE_STAT MSTD { int linux_stat64(char *filename, \
351 struct l_stat64 *statbuf, l_long flags); }
352196 AUE_LSTAT MSTD { int linux_lstat64(char *filename, \
353 struct l_stat64 *statbuf, l_long flags); }
354197 AUE_FSTAT MSTD { int linux_fstat64(l_ulong fd, \
355 struct l_stat64 *statbuf, l_long flags); }
356198 AUE_LCHOWN MSTD { int linux_lchown(char *path, l_uid_t uid, \
357 l_gid_t gid); }
358199 AUE_GETUID MSTD { int linux_getuid(void); }
359200 AUE_GETGID MSTD { int linux_getgid(void); }
360201 AUE_GETEUID MNOPROTO { int geteuid(void); }
361202 AUE_GETEGID MNOPROTO { int getegid(void); }
362203 AUE_SETREUID MNOPROTO { int setreuid(uid_t ruid, uid_t euid); }
363204 AUE_SETREGID MNOPROTO { int setregid(gid_t rgid, gid_t egid); }
364205 AUE_GETGROUPS MSTD { int linux_getgroups(l_int gidsetsize, \
365 l_gid_t *grouplist); }
366206 AUE_SETGROUPS MSTD { int linux_setgroups(l_int gidsetsize, \
367 l_gid_t *grouplist); }
368207 AUE_FCHOWN NODEF fchown fchown fchown_args int
369208 AUE_SETRESUID MNOPROTO { int setresuid(uid_t ruid, uid_t euid, \
370 uid_t suid); }
371209 AUE_GETRESUID MNOPROTO { int getresuid(uid_t *ruid, uid_t *euid, \
372 uid_t *suid); }
373210 AUE_SETRESGID MNOPROTO { int setresgid(gid_t rgid, gid_t egid, \
374 gid_t sgid); }
375211 AUE_GETRESGID MNOPROTO { int getresgid(gid_t *rgid, gid_t *egid, \
376 gid_t *sgid); }
377212 AUE_CHOWN MSTD { int linux_chown(char *path, l_uid_t uid, \
378 l_gid_t gid); }
379213 AUE_SETUID MNOPROTO { int setuid(uid_t uid); }
380214 AUE_SETGID MNOPROTO { int setgid(gid_t gid); }
381215 AUE_SETFSUID MSTD { int linux_setfsuid(l_uid_t uid); }
382216 AUE_SETFSGID MSTD { int linux_setfsgid(l_gid_t gid); }
383217 AUE_PIVOT_ROOT MSTD { int linux_pivot_root(char *new_root, \
384 char *put_old); }
385218 AUE_MINCORE MSTD { int linux_mincore(l_ulong start, \
386 l_size_t len, u_char *vec); }
387219 AUE_MADVISE MNOPROTO { int madvise(void *addr, size_t len, \
388 int behav); }
389220 AUE_O_GETDENTS STD { int linux_getdents64(l_uint fd, \
390 void *dirent, l_uint count); }
391221 AUE_FCNTL MSTD { int linux_fcntl64(l_uint fd, l_uint cmd, \
392 l_ulong arg); }
393222 AUE_NULL UNIMPL
394223 AUE_NULL UNIMPL
395224 AUE_NULL MSTD { long linux_gettid(void); }
396225 AUE_NULL UNIMPL linux_readahead
397226 AUE_NULL MSTD { int linux_setxattr(void); }
398227 AUE_NULL MSTD { int linux_lsetxattr(void); }
399228 AUE_NULL MSTD { int linux_fsetxattr(void); }
400229 AUE_NULL MSTD { int linux_getxattr(void); }
401230 AUE_NULL MSTD { int linux_lgetxattr(void); }
402231 AUE_NULL MSTD { int linux_fgetxattr(void); }
403232 AUE_NULL MSTD { int linux_listxattr(void); }
404233 AUE_NULL MSTD { int linux_llistxattr(void); }
405234 AUE_NULL MSTD { int linux_flistxattr(void); }
406235 AUE_NULL MSTD { int linux_removexattr(void); }
407236 AUE_NULL MSTD { int linux_lremovexattr(void); }
408237 AUE_NULL MSTD { int linux_fremovexattr(void); }
409238 AUE_NULL MSTD { int linux_tkill(int tid, int sig); }
410239 AUE_SENDFILE UNIMPL linux_sendfile64
411240 AUE_NULL UNIMPL linux_futex
412241 AUE_NULL UNIMPL linux_sched_setaffinity
413242 AUE_NULL UNIMPL linux_sched_getaffinity
414243 AUE_NULL MSTD { int linux_set_thread_area(void *entry); }
415244 AUE_NULL UNIMPL linux_get_thread_area
416245 AUE_NULL UNIMPL linux_io_setup
417246 AUE_NULL UNIMPL linux_io_destroy
418247 AUE_NULL UNIMPL linux_io_getevents
419248 AUE_NULL UNIMPL linux_io_submit
420249 AUE_NULL UNIMPL linux_io_cancel
421250 AUE_NULL MSTD { int linux_fadvise64(void); }
422251 AUE_NULL UNIMPL
423252 AUE_EXIT MNOPROTO { void sys_exit(int rval); } exit_group \
424 sys_exit_args void
425253 AUE_NULL UNIMPL linux_lookup_dcookie
426254 AUE_NULL UNIMPL linux_epoll_create
427255 AUE_NULL UNIMPL linux_epoll_ctl
428256 AUE_NULL UNIMPL linux_epoll_wait
429257 AUE_NULL UNIMPL linux_remap_file_pages
430258 AUE_NULL UNIMPL linux_set_tid_address
431259 AUE_NULL UNIMPL linux_timer_create
432260 AUE_NULL UNIMPL linux_timer_settime
433261 AUE_NULL UNIMPL linux_timer_gettime
434262 AUE_NULL UNIMPL linux_timer_getoverrun
435263 AUE_NULL UNIMPL linux_timer_delete
436264 AUE_CLOCK_SETTIME UNIMPL linux_clock_settime
437265 AUE_NULL UNIMPL linux_clock_gettime
438266 AUE_NULL UNIMPL linux_clock_getres
439267 AUE_NULL UNIMPL linux_clock_nanosleep
17994 AUE_FCHMOD MNOPROTO { int fchmod(int fd, int mode); }
18095 AUE_FCHOWN MNOPROTO { int fchown(int fd, int uid, int gid); }
18196 AUE_GETPRIORITY MSTD { int linux_getpriority(int which, int who); }
18297 AUE_SETPRIORITY MNOPROTO { int setpriority(int which, int who, \
183 int prio); }
18498 AUE_AUE_PROFILE UNIMPL profil
18599 AUE_STATFS MSTD { int linux_statfs(char *path, \
186 struct l_statfs_buf *buf); }
187100 AUE_FSTATFS MSTD { int linux_fstatfs(l_uint fd, \
188 struct l_statfs_buf *buf); }
189101 AUE_NULL MSTD { int linux_ioperm(l_ulong start, \
190 l_ulong length, l_int enable); }
191102 AUE_NULL MSTD { int linux_socketcall(l_int what, \
192 l_ulong args); }
193103 AUE_NULL MSTD { int linux_syslog(l_int type, char *buf, \
194 l_int len); }
195104 AUE_SETITIMER MSTD { int linux_setitimer(l_int which, \
196 struct l_itimerval *itv, \
197 struct l_itimerval *oitv); }
198105 AUE_GETITIMER MSTD { int linux_getitimer(l_int which, \
199 struct l_itimerval *itv); }
200106 AUE_STAT MSTD { int linux_newstat(char *path, \
201 struct l_newstat *buf); }
202107 AUE_LSTAT MSTD { int linux_newlstat(char *path, \
203 struct l_newstat *buf); }
204108 AUE_FSTAT MSTD { int linux_newfstat(l_uint fd, \
205 struct l_newstat *buf); }
206109 AUE_NULL MSTD { int linux_uname(void); }
207110 AUE_NULL MSTD { int linux_iopl(l_ulong level); }
208111 AUE_NULL MSTD { int linux_vhangup(void); }
209112 AUE_NULL UNIMPL idle
210113 AUE_NULL MSTD { int linux_vm86old(void); }
211114 AUE_WAIT4 MSTD { int linux_wait4(l_pid_t pid, \
212 l_uint *status, l_int options, \
213 struct l_rusage *rusage); }
214115 AUE_SWAPOFF MSTD { int linux_swapoff(void); }
215116 AUE_NULL MSTD { int linux_sysinfo(struct l_sysinfo *info); }
216117 AUE_NULL STD { int linux_ipc(l_uint what, l_int arg1, \
217 l_int arg2, l_int arg3, void *ptr, \
218 l_long arg5); }
219118 AUE_FSYNC MNOPROTO { int fsync(int fd); }
220119 AUE_SIGRETURN MSTD { int linux_sigreturn( \
221 struct l_sigframe *sfp); }
222120 AUE_RFORK MSTD { int linux_clone(l_int flags, void *stack); }
223121 AUE_SYSCTL MNOPROTO { int setdomainname(char *name, \
224 int len); }
225122 AUE_NULL MSTD { int linux_newuname( \
226 struct l_new_utsname *buf); }
227123 AUE_NULL MSTD { int linux_modify_ldt(l_int func, \
228 void *ptr, l_ulong bytecount); }
229124 AUE_ADJTIME MSTD { int linux_adjtimex(void); }
230125 AUE_MPROTECT MNOPROTO { int mprotect(caddr_t addr, int len, \
231 int prot); }
232126 AUE_SIGPROCMASK MSTD { int linux_sigprocmask(l_int how, \
233 l_osigset_t *mask, l_osigset_t *omask); }
234127 AUE_NULL MSTD { int linux_create_module(void); }
235128 AUE_NULL MSTD { int linux_init_module(void); }
236129 AUE_NULL MSTD { int linux_delete_module(void); }
237130 AUE_NULL MSTD { int linux_get_kernel_syms(void); }
238131 AUE_QUOTACTL MSTD { int linux_quotactl(void); }
239132 AUE_GETPGID MNOPROTO { int getpgid(int pid); }
240133 AUE_FCHDIR MNOPROTO { int fchdir(int fd); }
241134 AUE_BDFLUSH MSTD { int linux_bdflush(void); }
242135 AUE_NULL MSTD { int linux_sysfs(l_int option, \
243 l_ulong arg1, l_ulong arg2); }
244136 AUE_PERSONALITY MSTD { int linux_personality(l_ulong per); }
245137 AUE_NULL UNIMPL afs_syscall
246138 AUE_SETFSUID MSTD { int linux_setfsuid16(l_uid16_t uid); }
247139 AUE_SETFSGID MSTD { int linux_setfsgid16(l_gid16_t gid); }
248140 AUE_LSEEK MSTD { int linux_llseek(l_int fd, l_ulong ohigh, \
249 l_ulong olow, l_loff_t *res, \
250 l_uint whence); }
251141 AUE_O_GETDENTS STD { int linux_getdents(l_uint fd, void *dent, \
252 l_uint count); }
253142 AUE_SELECT MSTD { int linux_select(l_int nfds, \
254 l_fd_set *readfds, l_fd_set *writefds, \
255 l_fd_set *exceptfds, \
256 struct l_timeval *timeout); }
257143 AUE_FLOCK MNOPROTO { int flock(int fd, int how); }
258144 AUE_MSYNC MSTD { int linux_msync(l_ulong addr, \
259 l_size_t len, l_int fl); }
260145 AUE_READV MNOPROTO { int readv(int fd, struct iovec *iovp, \
261 u_int iovcnt); }
262146 AUE_WRITEV MNOPROTO { int writev(int fd, struct iovec *iovp, \
263 u_int iovcnt); }
264147 AUE_GETSID MSTD { int linux_getsid(l_pid_t pid); }
265148 AUE_NULL MSTD { int linux_fdatasync(l_uint fd); }
266149 AUE_SYSCTL MSTD { int linux_sysctl( \
267 struct l___sysctl_args *args); }
268150 AUE_MLOCK MNOPROTO { int mlock(const void *addr, size_t len); }
269151 AUE_MUNLOCK MNOPROTO { int munlock(const void *addr, size_t len); }
270152 AUE_MLOCKALL MNOPROTO { int mlockall(int how); }
271153 AUE_MUNLOCKALL MNOPROTO { int munlockall(void); }
272154 AUE_SCHED_SETPARAM MNOPROTO { int sched_setparam(pid_t pid, \
273 const struct sched_param *param); }
274155 AUE_SCHED_GETPARAM MNOPROTO { int sched_getparam(pid_t pid, \
275 struct sched_param *param); }
276156 AUE_SCHED_SETSCHEDULER MSTD { int linux_sched_setscheduler(l_pid_t pid, \
277 l_int policy, \
278 struct l_sched_param *param); }
279157 AUE_SCHED_GETSCHEDULER MSTD { int linux_sched_getscheduler(l_pid_t pid); }
280158 AUE_NULL MNOPROTO { int sched_yield(void); }
281159 AUE_SCHED_GET_PRIORITY_MAX MSTD { int linux_sched_get_priority_max( \
282 l_int policy); }
283160 AUE_SCHED_GET_PRIORITY_MIN MSTD { int linux_sched_get_priority_min( \
284 l_int policy); }
285161 AUE_SCHED_RR_GET_INTERVAL MNOPROTO { int sched_rr_get_interval(l_pid_t pid, \
286 struct l_timespec *interval); }
287162 AUE_NULL MNOPROTO { int nanosleep( \
288 const struct timespec *rqtp, \
289 struct timespec *rmtp); }
290163 AUE_NULL MSTD { int linux_mremap(l_ulong addr, \
291 l_ulong old_len, l_ulong new_len, \
292 l_ulong flags, l_ulong new_addr); }
293164 AUE_SETRESUID MSTD { int linux_setresuid16(l_uid16_t ruid, \
294 l_uid16_t euid, l_uid16_t suid); }
295165 AUE_GETRESUID MSTD { int linux_getresuid16(l_uid16_t *ruid, \
296 l_uid16_t *euid, l_uid16_t *suid); }
297166 AUE_NULL MSTD { int linux_vm86(void); }
298167 AUE_NULL MSTD { int linux_query_module(void); }
299168 AUE_POLL MNOPROTO { int poll(struct pollfd*, \
300 unsigned int nfds, long timeout); }
301169 AUE_NULL MSTD { int linux_nfsservctl(void); }
302170 AUE_SETRESGID MSTD { int linux_setresgid16(l_gid16_t rgid, \
303 l_gid16_t egid, l_gid16_t sgid); }
304171 AUE_GETRESGID MSTD { int linux_getresgid16(l_gid16_t *rgid, \
305 l_gid16_t *egid, l_gid16_t *sgid); }
306172 AUE_PRCTL MSTD { int linux_prctl(void); }
307173 AUE_NULL MSTD { int linux_rt_sigreturn( \
308 struct l_ucontext *ucp); }
309174 AUE_NULL MSTD { int linux_rt_sigaction(l_int sig, \
310 l_sigaction_t *act, l_sigaction_t *oact, \
311 l_size_t sigsetsize); }
312175 AUE_NULL MSTD { int linux_rt_sigprocmask(l_int how, \
313 l_sigset_t *mask, l_sigset_t *omask, \
314 l_size_t sigsetsize); }
315176 AUE_NULL MSTD { int linux_rt_sigpending(void); }
316177 AUE_NULL MSTD { int linux_rt_sigtimedwait(void); }
317178 AUE_NULL MSTD { int linux_rt_sigqueueinfo(void); }
318179 AUE_NULL MSTD { int linux_rt_sigsuspend( \
319 l_sigset_t *newset, \
320 l_size_t sigsetsize); }
321180 AUE_PREAD MSTD { int linux_pread(l_uint fd, char *buf, \
322 l_size_t nbyte, l_loff_t offset); }
323181 AUE_PWRITE MSTD { int linux_pwrite(l_uint fd, char *buf, \
324 l_size_t nbyte, l_loff_t offset); }
325182 AUE_CHOWN MSTD { int linux_chown16(char *path, \
326 l_uid16_t uid, l_gid16_t gid); }
327183 AUE_GETCWD MSTD { int linux_getcwd(char *buf, \
328 l_ulong bufsize); }
329184 AUE_CAPGET MSTD { int linux_capget(void); }
330185 AUE_CAPSET MSTD { int linux_capset(void); }
331186 AUE_NULL MSTD { int linux_sigaltstack(l_stack_t *uss, \
332 l_stack_t *uoss); }
333187 AUE_SENDFILE MSTD { int linux_sendfile(void); }
334188 AUE_GETPMSG UNIMPL getpmsg
335189 AUE_PUTPMSG UNIMPL putpmsg
336190 AUE_VFORK MSTD { int linux_vfork(void); }
337191 AUE_GETRLIMIT MSTD { int linux_getrlimit(l_uint resource, \
338 struct l_rlimit *rlim); }
339192 AUE_MMAP MSTD { int linux_mmap2(l_ulong addr, l_ulong len, \
340 l_ulong prot, l_ulong flags, l_ulong fd, \
341 l_ulong pgoff); }
342193 AUE_TRUNCATE MSTD { int linux_truncate64(char *path, \
343 l_loff_t length); }
344194 AUE_FTRUNCATE MSTD { int linux_ftruncate64(l_uint fd, \
345 l_loff_t length); }
346195 AUE_STAT MSTD { int linux_stat64(char *filename, \
347 struct l_stat64 *statbuf, l_long flags); }
348196 AUE_LSTAT MSTD { int linux_lstat64(char *filename, \
349 struct l_stat64 *statbuf, l_long flags); }
350197 AUE_FSTAT MSTD { int linux_fstat64(l_ulong fd, \
351 struct l_stat64 *statbuf, l_long flags); }
352198 AUE_LCHOWN MSTD { int linux_lchown(char *path, l_uid_t uid, \
353 l_gid_t gid); }
354199 AUE_GETUID MSTD { int linux_getuid(void); }
355200 AUE_GETGID MSTD { int linux_getgid(void); }
356201 AUE_GETEUID MNOPROTO { int geteuid(void); }
357202 AUE_GETEGID MNOPROTO { int getegid(void); }
358203 AUE_SETREUID MNOPROTO { int setreuid(uid_t ruid, uid_t euid); }
359204 AUE_SETREGID MNOPROTO { int setregid(gid_t rgid, gid_t egid); }
360205 AUE_GETGROUPS MSTD { int linux_getgroups(l_int gidsetsize, \
361 l_gid_t *grouplist); }
362206 AUE_SETGROUPS MSTD { int linux_setgroups(l_int gidsetsize, \
363 l_gid_t *grouplist); }
364207 AUE_FCHOWN NODEF fchown fchown fchown_args int
365208 AUE_SETRESUID MNOPROTO { int setresuid(uid_t ruid, uid_t euid, \
366 uid_t suid); }
367209 AUE_GETRESUID MNOPROTO { int getresuid(uid_t *ruid, uid_t *euid, \
368 uid_t *suid); }
369210 AUE_SETRESGID MNOPROTO { int setresgid(gid_t rgid, gid_t egid, \
370 gid_t sgid); }
371211 AUE_GETRESGID MNOPROTO { int getresgid(gid_t *rgid, gid_t *egid, \
372 gid_t *sgid); }
373212 AUE_CHOWN MSTD { int linux_chown(char *path, l_uid_t uid, \
374 l_gid_t gid); }
375213 AUE_SETUID MNOPROTO { int setuid(uid_t uid); }
376214 AUE_SETGID MNOPROTO { int setgid(gid_t gid); }
377215 AUE_SETFSUID MSTD { int linux_setfsuid(l_uid_t uid); }
378216 AUE_SETFSGID MSTD { int linux_setfsgid(l_gid_t gid); }
379217 AUE_PIVOT_ROOT MSTD { int linux_pivot_root(char *new_root, \
380 char *put_old); }
381218 AUE_MINCORE MSTD { int linux_mincore(l_ulong start, \
382 l_size_t len, u_char *vec); }
383219 AUE_MADVISE MNOPROTO { int madvise(void *addr, size_t len, \
384 int behav); }
385220 AUE_O_GETDENTS STD { int linux_getdents64(l_uint fd, \
386 void *dirent, l_uint count); }
387221 AUE_FCNTL MSTD { int linux_fcntl64(l_uint fd, l_uint cmd, \
388 l_ulong arg); }
389222 AUE_NULL UNIMPL
390223 AUE_NULL UNIMPL
391224 AUE_NULL MSTD { long linux_gettid(void); }
392225 AUE_NULL UNIMPL linux_readahead
393226 AUE_NULL MSTD { int linux_setxattr(void); }
394227 AUE_NULL MSTD { int linux_lsetxattr(void); }
395228 AUE_NULL MSTD { int linux_fsetxattr(void); }
396229 AUE_NULL MSTD { int linux_getxattr(void); }
397230 AUE_NULL MSTD { int linux_lgetxattr(void); }
398231 AUE_NULL MSTD { int linux_fgetxattr(void); }
399232 AUE_NULL MSTD { int linux_listxattr(void); }
400233 AUE_NULL MSTD { int linux_llistxattr(void); }
401234 AUE_NULL MSTD { int linux_flistxattr(void); }
402235 AUE_NULL MSTD { int linux_removexattr(void); }
403236 AUE_NULL MSTD { int linux_lremovexattr(void); }
404237 AUE_NULL MSTD { int linux_fremovexattr(void); }
405238 AUE_NULL MSTD { int linux_tkill(int tid, int sig); }
406239 AUE_SENDFILE UNIMPL linux_sendfile64
407240 AUE_NULL UNIMPL linux_futex
408241 AUE_NULL UNIMPL linux_sched_setaffinity
409242 AUE_NULL UNIMPL linux_sched_getaffinity
410243 AUE_NULL MSTD { int linux_set_thread_area(void *entry); }
411244 AUE_NULL UNIMPL linux_get_thread_area
412245 AUE_NULL UNIMPL linux_io_setup
413246 AUE_NULL UNIMPL linux_io_destroy
414247 AUE_NULL UNIMPL linux_io_getevents
415248 AUE_NULL UNIMPL linux_io_submit
416249 AUE_NULL UNIMPL linux_io_cancel
417250 AUE_NULL MSTD { int linux_fadvise64(void); }
418251 AUE_NULL UNIMPL
419252 AUE_EXIT MNOPROTO { void sys_exit(int rval); } exit_group \
420 sys_exit_args void
421253 AUE_NULL UNIMPL linux_lookup_dcookie
422254 AUE_NULL UNIMPL linux_epoll_create
423255 AUE_NULL UNIMPL linux_epoll_ctl
424256 AUE_NULL UNIMPL linux_epoll_wait
425257 AUE_NULL UNIMPL linux_remap_file_pages
426258 AUE_NULL UNIMPL linux_set_tid_address
427259 AUE_NULL UNIMPL linux_timer_create
428260 AUE_NULL UNIMPL linux_timer_settime
429261 AUE_NULL UNIMPL linux_timer_gettime
430262 AUE_NULL UNIMPL linux_timer_getoverrun
431263 AUE_NULL UNIMPL linux_timer_delete
432264 AUE_CLOCK_SETTIME UNIMPL linux_clock_settime
433265 AUE_NULL UNIMPL linux_clock_gettime
434266 AUE_NULL UNIMPL linux_clock_getres
435267 AUE_NULL UNIMPL linux_clock_nanosleep