xref: /freebsd/sys/compat/freebsd32/freebsd32_proto.h (revision 5c63b21a1a97613dd4d7b558d45dab361d95206e)
1 /*
2  * System call prototypes.
3  *
4  * DO NOT EDIT-- this file is automatically generated.
5  * $FreeBSD$
6  * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.98 2008/03/25 19:34:47 jhb Exp
7  */
8 
9 #ifndef _FREEBSD32_SYSPROTO_H_
10 #define	_FREEBSD32_SYSPROTO_H_
11 
12 #include <sys/signal.h>
13 #include <sys/acl.h>
14 #include <sys/cpuset.h>
15 #include <sys/_semaphore.h>
16 #include <sys/ucontext.h>
17 
18 #include <bsm/audit_kevents.h>
19 
20 struct proc;
21 
22 struct thread;
23 
24 #define	PAD_(t)	(sizeof(register_t) <= sizeof(t) ? \
25 		0 : sizeof(register_t) - sizeof(t))
26 
27 #if BYTE_ORDER == LITTLE_ENDIAN
28 #define	PADL_(t)	0
29 #define	PADR_(t)	PAD_(t)
30 #else
31 #define	PADL_(t)	PAD_(t)
32 #define	PADR_(t)	0
33 #endif
34 
35 struct freebsd32_wait4_args {
36 	char pid_l_[PADL_(int)]; int pid; char pid_r_[PADR_(int)];
37 	char status_l_[PADL_(int *)]; int * status; char status_r_[PADR_(int *)];
38 	char options_l_[PADL_(int)]; int options; char options_r_[PADR_(int)];
39 	char rusage_l_[PADL_(struct rusage32 *)]; struct rusage32 * rusage; char rusage_r_[PADR_(struct rusage32 *)];
40 };
41 struct freebsd32_recvmsg_args {
42 	char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
43 	char msg_l_[PADL_(struct msghdr32 *)]; struct msghdr32 * msg; char msg_r_[PADR_(struct msghdr32 *)];
44 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
45 };
46 struct freebsd32_sendmsg_args {
47 	char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
48 	char msg_l_[PADL_(struct msghdr32 *)]; struct msghdr32 * msg; char msg_r_[PADR_(struct msghdr32 *)];
49 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
50 };
51 struct freebsd32_recvfrom_args {
52 	char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
53 	char buf_l_[PADL_(u_int32_t)]; u_int32_t buf; char buf_r_[PADR_(u_int32_t)];
54 	char len_l_[PADL_(u_int32_t)]; u_int32_t len; char len_r_[PADR_(u_int32_t)];
55 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
56 	char from_l_[PADL_(u_int32_t)]; u_int32_t from; char from_r_[PADR_(u_int32_t)];
57 	char fromlenaddr_l_[PADL_(u_int32_t)]; u_int32_t fromlenaddr; char fromlenaddr_r_[PADR_(u_int32_t)];
58 };
59 struct ofreebsd32_sigpending_args {
60 	register_t dummy;
61 };
62 struct freebsd32_sigaltstack_args {
63 	char ss_l_[PADL_(struct sigaltstack32 *)]; struct sigaltstack32 * ss; char ss_r_[PADR_(struct sigaltstack32 *)];
64 	char oss_l_[PADL_(struct sigaltstack32 *)]; struct sigaltstack32 * oss; char oss_r_[PADR_(struct sigaltstack32 *)];
65 };
66 struct freebsd32_execve_args {
67 	char fname_l_[PADL_(char *)]; char * fname; char fname_r_[PADR_(char *)];
68 	char argv_l_[PADL_(u_int32_t *)]; u_int32_t * argv; char argv_r_[PADR_(u_int32_t *)];
69 	char envv_l_[PADL_(u_int32_t *)]; u_int32_t * envv; char envv_r_[PADR_(u_int32_t *)];
70 };
71 struct freebsd32_setitimer_args {
72 	char which_l_[PADL_(u_int)]; u_int which; char which_r_[PADR_(u_int)];
73 	char itv_l_[PADL_(struct itimerval32 *)]; struct itimerval32 * itv; char itv_r_[PADR_(struct itimerval32 *)];
74 	char oitv_l_[PADL_(struct itimerval32 *)]; struct itimerval32 * oitv; char oitv_r_[PADR_(struct itimerval32 *)];
75 };
76 struct freebsd32_getitimer_args {
77 	char which_l_[PADL_(u_int)]; u_int which; char which_r_[PADR_(u_int)];
78 	char itv_l_[PADL_(struct itimerval32 *)]; struct itimerval32 * itv; char itv_r_[PADR_(struct itimerval32 *)];
79 };
80 struct freebsd32_select_args {
81 	char nd_l_[PADL_(int)]; int nd; char nd_r_[PADR_(int)];
82 	char in_l_[PADL_(fd_set *)]; fd_set * in; char in_r_[PADR_(fd_set *)];
83 	char ou_l_[PADL_(fd_set *)]; fd_set * ou; char ou_r_[PADR_(fd_set *)];
84 	char ex_l_[PADL_(fd_set *)]; fd_set * ex; char ex_r_[PADR_(fd_set *)];
85 	char tv_l_[PADL_(struct timeval32 *)]; struct timeval32 * tv; char tv_r_[PADR_(struct timeval32 *)];
86 };
87 struct freebsd32_gettimeofday_args {
88 	char tp_l_[PADL_(struct timeval32 *)]; struct timeval32 * tp; char tp_r_[PADR_(struct timeval32 *)];
89 	char tzp_l_[PADL_(struct timezone *)]; struct timezone * tzp; char tzp_r_[PADR_(struct timezone *)];
90 };
91 struct freebsd32_getrusage_args {
92 	char who_l_[PADL_(int)]; int who; char who_r_[PADR_(int)];
93 	char rusage_l_[PADL_(struct rusage32 *)]; struct rusage32 * rusage; char rusage_r_[PADR_(struct rusage32 *)];
94 };
95 struct freebsd32_readv_args {
96 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
97 	char iovp_l_[PADL_(struct iovec32 *)]; struct iovec32 * iovp; char iovp_r_[PADR_(struct iovec32 *)];
98 	char iovcnt_l_[PADL_(u_int)]; u_int iovcnt; char iovcnt_r_[PADR_(u_int)];
99 };
100 struct freebsd32_writev_args {
101 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
102 	char iovp_l_[PADL_(struct iovec32 *)]; struct iovec32 * iovp; char iovp_r_[PADR_(struct iovec32 *)];
103 	char iovcnt_l_[PADL_(u_int)]; u_int iovcnt; char iovcnt_r_[PADR_(u_int)];
104 };
105 struct freebsd32_settimeofday_args {
106 	char tv_l_[PADL_(struct timeval32 *)]; struct timeval32 * tv; char tv_r_[PADR_(struct timeval32 *)];
107 	char tzp_l_[PADL_(struct timezone *)]; struct timezone * tzp; char tzp_r_[PADR_(struct timezone *)];
108 };
109 struct freebsd32_utimes_args {
110 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
111 	char tptr_l_[PADL_(struct timeval32 *)]; struct timeval32 * tptr; char tptr_r_[PADR_(struct timeval32 *)];
112 };
113 struct freebsd32_adjtime_args {
114 	char delta_l_[PADL_(struct timeval32 *)]; struct timeval32 * delta; char delta_r_[PADR_(struct timeval32 *)];
115 	char olddelta_l_[PADL_(struct timeval32 *)]; struct timeval32 * olddelta; char olddelta_r_[PADR_(struct timeval32 *)];
116 };
117 struct freebsd32_semsys_args {
118 	char which_l_[PADL_(int)]; int which; char which_r_[PADR_(int)];
119 	char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
120 	char a3_l_[PADL_(int)]; int a3; char a3_r_[PADR_(int)];
121 	char a4_l_[PADL_(int)]; int a4; char a4_r_[PADR_(int)];
122 	char a5_l_[PADL_(int)]; int a5; char a5_r_[PADR_(int)];
123 };
124 struct freebsd32_msgsys_args {
125 	char which_l_[PADL_(int)]; int which; char which_r_[PADR_(int)];
126 	char a2_l_[PADL_(int)]; int a2; char a2_r_[PADR_(int)];
127 	char a3_l_[PADL_(int)]; int a3; char a3_r_[PADR_(int)];
128 	char a4_l_[PADL_(int)]; int a4; char a4_r_[PADR_(int)];
129 	char a5_l_[PADL_(int)]; int a5; char a5_r_[PADR_(int)];
130 	char a6_l_[PADL_(int)]; int a6; char a6_r_[PADR_(int)];
131 };
132 struct freebsd32_shmsys_args {
133 	char which_l_[PADL_(uint32_t)]; uint32_t which; char which_r_[PADR_(uint32_t)];
134 	char a2_l_[PADL_(uint32_t)]; uint32_t a2; char a2_r_[PADR_(uint32_t)];
135 	char a3_l_[PADL_(uint32_t)]; uint32_t a3; char a3_r_[PADR_(uint32_t)];
136 	char a4_l_[PADL_(uint32_t)]; uint32_t a4; char a4_r_[PADR_(uint32_t)];
137 };
138 struct freebsd32_stat_args {
139 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
140 	char ub_l_[PADL_(struct stat32 *)]; struct stat32 * ub; char ub_r_[PADR_(struct stat32 *)];
141 };
142 struct freebsd32_fstat_args {
143 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
144 	char ub_l_[PADL_(struct stat32 *)]; struct stat32 * ub; char ub_r_[PADR_(struct stat32 *)];
145 };
146 struct freebsd32_lstat_args {
147 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
148 	char ub_l_[PADL_(struct stat32 *)]; struct stat32 * ub; char ub_r_[PADR_(struct stat32 *)];
149 };
150 struct freebsd32_sysctl_args {
151 	char name_l_[PADL_(int *)]; int * name; char name_r_[PADR_(int *)];
152 	char namelen_l_[PADL_(u_int)]; u_int namelen; char namelen_r_[PADR_(u_int)];
153 	char old_l_[PADL_(void *)]; void * old; char old_r_[PADR_(void *)];
154 	char oldlenp_l_[PADL_(u_int32_t *)]; u_int32_t * oldlenp; char oldlenp_r_[PADR_(u_int32_t *)];
155 	char new_l_[PADL_(void *)]; void * new; char new_r_[PADR_(void *)];
156 	char newlen_l_[PADL_(u_int32_t)]; u_int32_t newlen; char newlen_r_[PADR_(u_int32_t)];
157 };
158 struct freebsd32_futimes_args {
159 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
160 	char tptr_l_[PADL_(struct timeval32 *)]; struct timeval32 * tptr; char tptr_r_[PADR_(struct timeval32 *)];
161 };
162 struct freebsd32_semctl_args {
163 	char semid_l_[PADL_(int)]; int semid; char semid_r_[PADR_(int)];
164 	char semnum_l_[PADL_(int)]; int semnum; char semnum_r_[PADR_(int)];
165 	char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
166 	char arg_l_[PADL_(union semun32 *)]; union semun32 * arg; char arg_r_[PADR_(union semun32 *)];
167 };
168 struct freebsd32_msgctl_args {
169 	char msqid_l_[PADL_(int)]; int msqid; char msqid_r_[PADR_(int)];
170 	char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
171 	char buf_l_[PADL_(struct msqid_ds32 *)]; struct msqid_ds32 * buf; char buf_r_[PADR_(struct msqid_ds32 *)];
172 };
173 struct freebsd32_msgsnd_args {
174 	char msqid_l_[PADL_(int)]; int msqid; char msqid_r_[PADR_(int)];
175 	char msgp_l_[PADL_(void *)]; void * msgp; char msgp_r_[PADR_(void *)];
176 	char msgsz_l_[PADL_(size_t)]; size_t msgsz; char msgsz_r_[PADR_(size_t)];
177 	char msgflg_l_[PADL_(int)]; int msgflg; char msgflg_r_[PADR_(int)];
178 };
179 struct freebsd32_msgrcv_args {
180 	char msqid_l_[PADL_(int)]; int msqid; char msqid_r_[PADR_(int)];
181 	char msgp_l_[PADL_(void *)]; void * msgp; char msgp_r_[PADR_(void *)];
182 	char msgsz_l_[PADL_(size_t)]; size_t msgsz; char msgsz_r_[PADR_(size_t)];
183 	char msgtyp_l_[PADL_(long)]; long msgtyp; char msgtyp_r_[PADR_(long)];
184 	char msgflg_l_[PADL_(int)]; int msgflg; char msgflg_r_[PADR_(int)];
185 };
186 struct freebsd32_shmctl_args {
187 	char shmid_l_[PADL_(int)]; int shmid; char shmid_r_[PADR_(int)];
188 	char cmd_l_[PADL_(int)]; int cmd; char cmd_r_[PADR_(int)];
189 	char buf_l_[PADL_(struct shmid_ds *)]; struct shmid_ds * buf; char buf_r_[PADR_(struct shmid_ds *)];
190 };
191 struct freebsd32_clock_gettime_args {
192 	char clock_id_l_[PADL_(clockid_t)]; clockid_t clock_id; char clock_id_r_[PADR_(clockid_t)];
193 	char tp_l_[PADL_(struct timespec32 *)]; struct timespec32 * tp; char tp_r_[PADR_(struct timespec32 *)];
194 };
195 struct freebsd32_clock_settime_args {
196 	char clock_id_l_[PADL_(clockid_t)]; clockid_t clock_id; char clock_id_r_[PADR_(clockid_t)];
197 	char tp_l_[PADL_(const struct timespec32 *)]; const struct timespec32 * tp; char tp_r_[PADR_(const struct timespec32 *)];
198 };
199 struct freebsd32_clock_getres_args {
200 	char clock_id_l_[PADL_(clockid_t)]; clockid_t clock_id; char clock_id_r_[PADR_(clockid_t)];
201 	char tp_l_[PADL_(struct timespec32 *)]; struct timespec32 * tp; char tp_r_[PADR_(struct timespec32 *)];
202 };
203 struct freebsd32_nanosleep_args {
204 	char rqtp_l_[PADL_(const struct timespec32 *)]; const struct timespec32 * rqtp; char rqtp_r_[PADR_(const struct timespec32 *)];
205 	char rmtp_l_[PADL_(struct timespec32 *)]; struct timespec32 * rmtp; char rmtp_r_[PADR_(struct timespec32 *)];
206 };
207 struct freebsd32_lutimes_args {
208 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
209 	char tptr_l_[PADL_(struct timeval32 *)]; struct timeval32 * tptr; char tptr_r_[PADR_(struct timeval32 *)];
210 };
211 struct freebsd32_preadv_args {
212 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
213 	char iovp_l_[PADL_(struct iovec32 *)]; struct iovec32 * iovp; char iovp_r_[PADR_(struct iovec32 *)];
214 	char iovcnt_l_[PADL_(u_int)]; u_int iovcnt; char iovcnt_r_[PADR_(u_int)];
215 	char offset_l_[PADL_(off_t)]; off_t offset; char offset_r_[PADR_(off_t)];
216 };
217 struct freebsd32_pwritev_args {
218 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
219 	char iovp_l_[PADL_(struct iovec32 *)]; struct iovec32 * iovp; char iovp_r_[PADR_(struct iovec32 *)];
220 	char iovcnt_l_[PADL_(u_int)]; u_int iovcnt; char iovcnt_r_[PADR_(u_int)];
221 	char offset_l_[PADL_(off_t)]; off_t offset; char offset_r_[PADR_(off_t)];
222 };
223 struct freebsd32_modstat_args {
224 	char modid_l_[PADL_(int)]; int modid; char modid_r_[PADR_(int)];
225 	char stat_l_[PADL_(struct module_stat32 *)]; struct module_stat32 * stat; char stat_r_[PADR_(struct module_stat32 *)];
226 };
227 struct freebsd32_sigtimedwait_args {
228 	char set_l_[PADL_(const sigset_t *)]; const sigset_t * set; char set_r_[PADR_(const sigset_t *)];
229 	char info_l_[PADL_(siginfo_t *)]; siginfo_t * info; char info_r_[PADR_(siginfo_t *)];
230 	char timeout_l_[PADL_(const struct timespec *)]; const struct timespec * timeout; char timeout_r_[PADR_(const struct timespec *)];
231 };
232 struct freebsd32_sigwaitinfo_args {
233 	char set_l_[PADL_(const sigset_t *)]; const sigset_t * set; char set_r_[PADR_(const sigset_t *)];
234 	char info_l_[PADL_(siginfo_t *)]; siginfo_t * info; char info_r_[PADR_(siginfo_t *)];
235 };
236 struct freebsd32_kevent_args {
237 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
238 	char changelist_l_[PADL_(const struct kevent32 *)]; const struct kevent32 * changelist; char changelist_r_[PADR_(const struct kevent32 *)];
239 	char nchanges_l_[PADL_(int)]; int nchanges; char nchanges_r_[PADR_(int)];
240 	char eventlist_l_[PADL_(struct kevent32 *)]; struct kevent32 * eventlist; char eventlist_r_[PADR_(struct kevent32 *)];
241 	char nevents_l_[PADL_(int)]; int nevents; char nevents_r_[PADR_(int)];
242 	char timeout_l_[PADL_(const struct timespec32 *)]; const struct timespec32 * timeout; char timeout_r_[PADR_(const struct timespec32 *)];
243 };
244 struct freebsd32_sendfile_args {
245 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
246 	char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
247 	char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)];
248 	char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)];
249 	char nbytes_l_[PADL_(size_t)]; size_t nbytes; char nbytes_r_[PADR_(size_t)];
250 	char hdtr_l_[PADL_(struct sf_hdtr32 *)]; struct sf_hdtr32 * hdtr; char hdtr_r_[PADR_(struct sf_hdtr32 *)];
251 	char sbytes_l_[PADL_(off_t *)]; off_t * sbytes; char sbytes_r_[PADR_(off_t *)];
252 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
253 };
254 struct freebsd32_sigaction_args {
255 	char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
256 	char act_l_[PADL_(struct sigaction32 *)]; struct sigaction32 * act; char act_r_[PADR_(struct sigaction32 *)];
257 	char oact_l_[PADL_(struct sigaction32 *)]; struct sigaction32 * oact; char oact_r_[PADR_(struct sigaction32 *)];
258 };
259 struct freebsd32_sigreturn_args {
260 	char sigcntxp_l_[PADL_(const struct freebsd32_ucontext *)]; const struct freebsd32_ucontext * sigcntxp; char sigcntxp_r_[PADR_(const struct freebsd32_ucontext *)];
261 };
262 struct freebsd32_getcontext_args {
263 	char ucp_l_[PADL_(struct freebsd32_ucontext *)]; struct freebsd32_ucontext * ucp; char ucp_r_[PADR_(struct freebsd32_ucontext *)];
264 };
265 struct freebsd32_setcontext_args {
266 	char ucp_l_[PADL_(const struct freebsd32_ucontext *)]; const struct freebsd32_ucontext * ucp; char ucp_r_[PADR_(const struct freebsd32_ucontext *)];
267 };
268 struct freebsd32_swapcontext_args {
269 	char oucp_l_[PADL_(struct freebsd32_ucontext *)]; struct freebsd32_ucontext * oucp; char oucp_r_[PADR_(struct freebsd32_ucontext *)];
270 	char ucp_l_[PADL_(const struct freebsd32_ucontext *)]; const struct freebsd32_ucontext * ucp; char ucp_r_[PADR_(const struct freebsd32_ucontext *)];
271 };
272 struct freebsd32_umtx_lock_args {
273 	char umtx_l_[PADL_(struct umtx *)]; struct umtx * umtx; char umtx_r_[PADR_(struct umtx *)];
274 };
275 struct freebsd32_umtx_unlock_args {
276 	char umtx_l_[PADL_(struct umtx *)]; struct umtx * umtx; char umtx_r_[PADR_(struct umtx *)];
277 };
278 struct freebsd32_thr_suspend_args {
279 	char timeout_l_[PADL_(const struct timespec32 *)]; const struct timespec32 * timeout; char timeout_r_[PADR_(const struct timespec32 *)];
280 };
281 struct freebsd32_umtx_op_args {
282 	char obj_l_[PADL_(void *)]; void * obj; char obj_r_[PADR_(void *)];
283 	char op_l_[PADL_(int)]; int op; char op_r_[PADR_(int)];
284 	char val_l_[PADL_(u_long)]; u_long val; char val_r_[PADR_(u_long)];
285 	char uaddr_l_[PADL_(void *)]; void * uaddr; char uaddr_r_[PADR_(void *)];
286 	char uaddr2_l_[PADL_(void *)]; void * uaddr2; char uaddr2_r_[PADR_(void *)];
287 };
288 struct freebsd32_thr_new_args {
289 	char param_l_[PADL_(struct thr_param32 *)]; struct thr_param32 * param; char param_r_[PADR_(struct thr_param32 *)];
290 	char param_size_l_[PADL_(int)]; int param_size; char param_size_r_[PADR_(int)];
291 };
292 struct freebsd32_pread_args {
293 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
294 	char buf_l_[PADL_(void *)]; void * buf; char buf_r_[PADR_(void *)];
295 	char nbyte_l_[PADL_(size_t)]; size_t nbyte; char nbyte_r_[PADR_(size_t)];
296 	char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)];
297 	char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)];
298 };
299 struct freebsd32_pwrite_args {
300 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
301 	char buf_l_[PADL_(const void *)]; const void * buf; char buf_r_[PADR_(const void *)];
302 	char nbyte_l_[PADL_(size_t)]; size_t nbyte; char nbyte_r_[PADR_(size_t)];
303 	char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)];
304 	char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)];
305 };
306 struct freebsd32_mmap_args {
307 	char addr_l_[PADL_(caddr_t)]; caddr_t addr; char addr_r_[PADR_(caddr_t)];
308 	char len_l_[PADL_(size_t)]; size_t len; char len_r_[PADR_(size_t)];
309 	char prot_l_[PADL_(int)]; int prot; char prot_r_[PADR_(int)];
310 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
311 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
312 	char poslo_l_[PADL_(u_int32_t)]; u_int32_t poslo; char poslo_r_[PADR_(u_int32_t)];
313 	char poshi_l_[PADL_(u_int32_t)]; u_int32_t poshi; char poshi_r_[PADR_(u_int32_t)];
314 };
315 struct freebsd32_lseek_args {
316 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
317 	char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)];
318 	char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)];
319 	char whence_l_[PADL_(int)]; int whence; char whence_r_[PADR_(int)];
320 };
321 struct freebsd32_truncate_args {
322 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
323 	char lengthlo_l_[PADL_(u_int32_t)]; u_int32_t lengthlo; char lengthlo_r_[PADR_(u_int32_t)];
324 	char lengthhi_l_[PADL_(u_int32_t)]; u_int32_t lengthhi; char lengthhi_r_[PADR_(u_int32_t)];
325 };
326 struct freebsd32_ftruncate_args {
327 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
328 	char lengthlo_l_[PADL_(u_int32_t)]; u_int32_t lengthlo; char lengthlo_r_[PADR_(u_int32_t)];
329 	char lengthhi_l_[PADL_(u_int32_t)]; u_int32_t lengthhi; char lengthhi_r_[PADR_(u_int32_t)];
330 };
331 int	freebsd32_wait4(struct thread *, struct freebsd32_wait4_args *);
332 int	freebsd32_recvmsg(struct thread *, struct freebsd32_recvmsg_args *);
333 int	freebsd32_sendmsg(struct thread *, struct freebsd32_sendmsg_args *);
334 int	freebsd32_recvfrom(struct thread *, struct freebsd32_recvfrom_args *);
335 int	freebsd32_sigaltstack(struct thread *, struct freebsd32_sigaltstack_args *);
336 int	freebsd32_execve(struct thread *, struct freebsd32_execve_args *);
337 int	freebsd32_setitimer(struct thread *, struct freebsd32_setitimer_args *);
338 int	freebsd32_getitimer(struct thread *, struct freebsd32_getitimer_args *);
339 int	freebsd32_select(struct thread *, struct freebsd32_select_args *);
340 int	freebsd32_gettimeofday(struct thread *, struct freebsd32_gettimeofday_args *);
341 int	freebsd32_getrusage(struct thread *, struct freebsd32_getrusage_args *);
342 int	freebsd32_readv(struct thread *, struct freebsd32_readv_args *);
343 int	freebsd32_writev(struct thread *, struct freebsd32_writev_args *);
344 int	freebsd32_settimeofday(struct thread *, struct freebsd32_settimeofday_args *);
345 int	freebsd32_utimes(struct thread *, struct freebsd32_utimes_args *);
346 int	freebsd32_adjtime(struct thread *, struct freebsd32_adjtime_args *);
347 int	freebsd32_semsys(struct thread *, struct freebsd32_semsys_args *);
348 int	freebsd32_msgsys(struct thread *, struct freebsd32_msgsys_args *);
349 int	freebsd32_shmsys(struct thread *, struct freebsd32_shmsys_args *);
350 int	freebsd32_stat(struct thread *, struct freebsd32_stat_args *);
351 int	freebsd32_fstat(struct thread *, struct freebsd32_fstat_args *);
352 int	freebsd32_lstat(struct thread *, struct freebsd32_lstat_args *);
353 int	freebsd32_sysctl(struct thread *, struct freebsd32_sysctl_args *);
354 int	freebsd32_futimes(struct thread *, struct freebsd32_futimes_args *);
355 int	freebsd32_semctl(struct thread *, struct freebsd32_semctl_args *);
356 int	freebsd32_msgctl(struct thread *, struct freebsd32_msgctl_args *);
357 int	freebsd32_msgsnd(struct thread *, struct freebsd32_msgsnd_args *);
358 int	freebsd32_msgrcv(struct thread *, struct freebsd32_msgrcv_args *);
359 int	freebsd32_shmctl(struct thread *, struct freebsd32_shmctl_args *);
360 int	freebsd32_clock_gettime(struct thread *, struct freebsd32_clock_gettime_args *);
361 int	freebsd32_clock_settime(struct thread *, struct freebsd32_clock_settime_args *);
362 int	freebsd32_clock_getres(struct thread *, struct freebsd32_clock_getres_args *);
363 int	freebsd32_nanosleep(struct thread *, struct freebsd32_nanosleep_args *);
364 int	freebsd32_lutimes(struct thread *, struct freebsd32_lutimes_args *);
365 int	freebsd32_preadv(struct thread *, struct freebsd32_preadv_args *);
366 int	freebsd32_pwritev(struct thread *, struct freebsd32_pwritev_args *);
367 int	freebsd32_modstat(struct thread *, struct freebsd32_modstat_args *);
368 int	freebsd32_sigtimedwait(struct thread *, struct freebsd32_sigtimedwait_args *);
369 int	freebsd32_sigwaitinfo(struct thread *, struct freebsd32_sigwaitinfo_args *);
370 int	freebsd32_kevent(struct thread *, struct freebsd32_kevent_args *);
371 int	freebsd32_sendfile(struct thread *, struct freebsd32_sendfile_args *);
372 int	freebsd32_sigaction(struct thread *, struct freebsd32_sigaction_args *);
373 int	freebsd32_sigreturn(struct thread *, struct freebsd32_sigreturn_args *);
374 int	freebsd32_getcontext(struct thread *, struct freebsd32_getcontext_args *);
375 int	freebsd32_setcontext(struct thread *, struct freebsd32_setcontext_args *);
376 int	freebsd32_swapcontext(struct thread *, struct freebsd32_swapcontext_args *);
377 int	freebsd32_umtx_lock(struct thread *, struct freebsd32_umtx_lock_args *);
378 int	freebsd32_umtx_unlock(struct thread *, struct freebsd32_umtx_unlock_args *);
379 int	freebsd32_thr_suspend(struct thread *, struct freebsd32_thr_suspend_args *);
380 int	freebsd32_umtx_op(struct thread *, struct freebsd32_umtx_op_args *);
381 int	freebsd32_thr_new(struct thread *, struct freebsd32_thr_new_args *);
382 int	freebsd32_pread(struct thread *, struct freebsd32_pread_args *);
383 int	freebsd32_pwrite(struct thread *, struct freebsd32_pwrite_args *);
384 int	freebsd32_mmap(struct thread *, struct freebsd32_mmap_args *);
385 int	freebsd32_lseek(struct thread *, struct freebsd32_lseek_args *);
386 int	freebsd32_truncate(struct thread *, struct freebsd32_truncate_args *);
387 int	freebsd32_ftruncate(struct thread *, struct freebsd32_ftruncate_args *);
388 
389 #ifdef COMPAT_43
390 
391 struct ofreebsd32_sigaction_args {
392 	char signum_l_[PADL_(int)]; int signum; char signum_r_[PADR_(int)];
393 	char nsa_l_[PADL_(struct osigaction32 *)]; struct osigaction32 * nsa; char nsa_r_[PADR_(struct osigaction32 *)];
394 	char osa_l_[PADL_(struct osigaction32 *)]; struct osigaction32 * osa; char osa_r_[PADR_(struct osigaction32 *)];
395 };
396 struct ofreebsd32_sigprocmask_args {
397 	char how_l_[PADL_(int)]; int how; char how_r_[PADR_(int)];
398 	char mask_l_[PADL_(osigset_t)]; osigset_t mask; char mask_r_[PADR_(osigset_t)];
399 };
400 struct ofreebsd32_sigvec_args {
401 	char signum_l_[PADL_(int)]; int signum; char signum_r_[PADR_(int)];
402 	char nsv_l_[PADL_(struct sigvec32 *)]; struct sigvec32 * nsv; char nsv_r_[PADR_(struct sigvec32 *)];
403 	char osv_l_[PADL_(struct sigvec32 *)]; struct sigvec32 * osv; char osv_r_[PADR_(struct sigvec32 *)];
404 };
405 struct ofreebsd32_sigblock_args {
406 	char mask_l_[PADL_(int)]; int mask; char mask_r_[PADR_(int)];
407 };
408 struct ofreebsd32_sigsetmask_args {
409 	char mask_l_[PADL_(int)]; int mask; char mask_r_[PADR_(int)];
410 };
411 struct ofreebsd32_sigsuspend_args {
412 	char mask_l_[PADL_(int)]; int mask; char mask_r_[PADR_(int)];
413 };
414 struct ofreebsd32_sigstack_args {
415 	char nss_l_[PADL_(struct sigstack32 *)]; struct sigstack32 * nss; char nss_r_[PADR_(struct sigstack32 *)];
416 	char oss_l_[PADL_(struct sigstack32 *)]; struct sigstack32 * oss; char oss_r_[PADR_(struct sigstack32 *)];
417 };
418 int	ofreebsd32_sigaction(struct thread *, struct ofreebsd32_sigaction_args *);
419 int	ofreebsd32_sigprocmask(struct thread *, struct ofreebsd32_sigprocmask_args *);
420 int	ofreebsd32_sigpending(struct thread *, struct ofreebsd32_sigpending_args *);
421 int	ofreebsd32_sigvec(struct thread *, struct ofreebsd32_sigvec_args *);
422 int	ofreebsd32_sigblock(struct thread *, struct ofreebsd32_sigblock_args *);
423 int	ofreebsd32_sigsetmask(struct thread *, struct ofreebsd32_sigsetmask_args *);
424 int	ofreebsd32_sigsuspend(struct thread *, struct ofreebsd32_sigsuspend_args *);
425 int	ofreebsd32_sigstack(struct thread *, struct ofreebsd32_sigstack_args *);
426 
427 #endif /* COMPAT_43 */
428 
429 
430 #ifdef COMPAT_FREEBSD4
431 
432 struct freebsd4_freebsd32_getfsstat_args {
433 	char buf_l_[PADL_(struct statfs32 *)]; struct statfs32 * buf; char buf_r_[PADR_(struct statfs32 *)];
434 	char bufsize_l_[PADL_(long)]; long bufsize; char bufsize_r_[PADR_(long)];
435 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
436 };
437 struct freebsd4_freebsd32_statfs_args {
438 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
439 	char buf_l_[PADL_(struct statfs32 *)]; struct statfs32 * buf; char buf_r_[PADR_(struct statfs32 *)];
440 };
441 struct freebsd4_freebsd32_fstatfs_args {
442 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
443 	char buf_l_[PADL_(struct statfs32 *)]; struct statfs32 * buf; char buf_r_[PADR_(struct statfs32 *)];
444 };
445 struct freebsd4_freebsd32_fhstatfs_args {
446 	char u_fhp_l_[PADL_(const struct fhandle *)]; const struct fhandle * u_fhp; char u_fhp_r_[PADR_(const struct fhandle *)];
447 	char buf_l_[PADL_(struct statfs32 *)]; struct statfs32 * buf; char buf_r_[PADR_(struct statfs32 *)];
448 };
449 struct freebsd4_freebsd32_sendfile_args {
450 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
451 	char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
452 	char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)];
453 	char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)];
454 	char nbytes_l_[PADL_(size_t)]; size_t nbytes; char nbytes_r_[PADR_(size_t)];
455 	char hdtr_l_[PADL_(struct sf_hdtr32 *)]; struct sf_hdtr32 * hdtr; char hdtr_r_[PADR_(struct sf_hdtr32 *)];
456 	char sbytes_l_[PADL_(off_t *)]; off_t * sbytes; char sbytes_r_[PADR_(off_t *)];
457 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
458 };
459 struct freebsd4_freebsd32_sigaction_args {
460 	char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)];
461 	char act_l_[PADL_(struct sigaction32 *)]; struct sigaction32 * act; char act_r_[PADR_(struct sigaction32 *)];
462 	char oact_l_[PADL_(struct sigaction32 *)]; struct sigaction32 * oact; char oact_r_[PADR_(struct sigaction32 *)];
463 };
464 struct freebsd4_freebsd32_sigreturn_args {
465 	char sigcntxp_l_[PADL_(const struct freebsd4_freebsd32_ucontext *)]; const struct freebsd4_freebsd32_ucontext * sigcntxp; char sigcntxp_r_[PADR_(const struct freebsd4_freebsd32_ucontext *)];
466 };
467 int	freebsd4_freebsd32_getfsstat(struct thread *, struct freebsd4_freebsd32_getfsstat_args *);
468 int	freebsd4_freebsd32_statfs(struct thread *, struct freebsd4_freebsd32_statfs_args *);
469 int	freebsd4_freebsd32_fstatfs(struct thread *, struct freebsd4_freebsd32_fstatfs_args *);
470 int	freebsd4_freebsd32_fhstatfs(struct thread *, struct freebsd4_freebsd32_fhstatfs_args *);
471 int	freebsd4_freebsd32_sendfile(struct thread *, struct freebsd4_freebsd32_sendfile_args *);
472 int	freebsd4_freebsd32_sigaction(struct thread *, struct freebsd4_freebsd32_sigaction_args *);
473 int	freebsd4_freebsd32_sigreturn(struct thread *, struct freebsd4_freebsd32_sigreturn_args *);
474 
475 #endif /* COMPAT_FREEBSD4 */
476 
477 
478 #ifdef COMPAT_FREEBSD6
479 
480 struct freebsd6_freebsd32_pread_args {
481 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
482 	char buf_l_[PADL_(void *)]; void * buf; char buf_r_[PADR_(void *)];
483 	char nbyte_l_[PADL_(size_t)]; size_t nbyte; char nbyte_r_[PADR_(size_t)];
484 	char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
485 	char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)];
486 	char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)];
487 };
488 struct freebsd6_freebsd32_pwrite_args {
489 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
490 	char buf_l_[PADL_(const void *)]; const void * buf; char buf_r_[PADR_(const void *)];
491 	char nbyte_l_[PADL_(size_t)]; size_t nbyte; char nbyte_r_[PADR_(size_t)];
492 	char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
493 	char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)];
494 	char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)];
495 };
496 struct freebsd6_freebsd32_mmap_args {
497 	char addr_l_[PADL_(caddr_t)]; caddr_t addr; char addr_r_[PADR_(caddr_t)];
498 	char len_l_[PADL_(size_t)]; size_t len; char len_r_[PADR_(size_t)];
499 	char prot_l_[PADL_(int)]; int prot; char prot_r_[PADR_(int)];
500 	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
501 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
502 	char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
503 	char poslo_l_[PADL_(u_int32_t)]; u_int32_t poslo; char poslo_r_[PADR_(u_int32_t)];
504 	char poshi_l_[PADL_(u_int32_t)]; u_int32_t poshi; char poshi_r_[PADR_(u_int32_t)];
505 };
506 struct freebsd6_freebsd32_lseek_args {
507 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
508 	char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
509 	char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)];
510 	char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)];
511 	char whence_l_[PADL_(int)]; int whence; char whence_r_[PADR_(int)];
512 };
513 struct freebsd6_freebsd32_truncate_args {
514 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
515 	char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
516 	char lengthlo_l_[PADL_(u_int32_t)]; u_int32_t lengthlo; char lengthlo_r_[PADR_(u_int32_t)];
517 	char lengthhi_l_[PADL_(u_int32_t)]; u_int32_t lengthhi; char lengthhi_r_[PADR_(u_int32_t)];
518 };
519 struct freebsd6_freebsd32_ftruncate_args {
520 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
521 	char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
522 	char lengthlo_l_[PADL_(u_int32_t)]; u_int32_t lengthlo; char lengthlo_r_[PADR_(u_int32_t)];
523 	char lengthhi_l_[PADL_(u_int32_t)]; u_int32_t lengthhi; char lengthhi_r_[PADR_(u_int32_t)];
524 };
525 int	freebsd6_freebsd32_pread(struct thread *, struct freebsd6_freebsd32_pread_args *);
526 int	freebsd6_freebsd32_pwrite(struct thread *, struct freebsd6_freebsd32_pwrite_args *);
527 int	freebsd6_freebsd32_mmap(struct thread *, struct freebsd6_freebsd32_mmap_args *);
528 int	freebsd6_freebsd32_lseek(struct thread *, struct freebsd6_freebsd32_lseek_args *);
529 int	freebsd6_freebsd32_truncate(struct thread *, struct freebsd6_freebsd32_truncate_args *);
530 int	freebsd6_freebsd32_ftruncate(struct thread *, struct freebsd6_freebsd32_ftruncate_args *);
531 
532 #endif /* COMPAT_FREEBSD6 */
533 
534 #define	FREEBSD32_SYS_AUE_freebsd32_wait4	AUE_WAIT4
535 #define	FREEBSD32_SYS_AUE_freebsd32_recvmsg	AUE_RECVMSG
536 #define	FREEBSD32_SYS_AUE_freebsd32_sendmsg	AUE_SENDMSG
537 #define	FREEBSD32_SYS_AUE_freebsd32_recvfrom	AUE_RECVFROM
538 #define	FREEBSD32_SYS_AUE_freebsd32_sigaltstack	AUE_SIGALTSTACK
539 #define	FREEBSD32_SYS_AUE_freebsd32_execve	AUE_EXECVE
540 #define	FREEBSD32_SYS_AUE_freebsd32_setitimer	AUE_SETITIMER
541 #define	FREEBSD32_SYS_AUE_freebsd32_getitimer	AUE_GETITIMER
542 #define	FREEBSD32_SYS_AUE_freebsd32_select	AUE_SELECT
543 #define	FREEBSD32_SYS_AUE_freebsd32_gettimeofday	AUE_GETTIMEOFDAY
544 #define	FREEBSD32_SYS_AUE_freebsd32_getrusage	AUE_GETRUSAGE
545 #define	FREEBSD32_SYS_AUE_freebsd32_readv	AUE_READV
546 #define	FREEBSD32_SYS_AUE_freebsd32_writev	AUE_WRITEV
547 #define	FREEBSD32_SYS_AUE_freebsd32_settimeofday	AUE_SETTIMEOFDAY
548 #define	FREEBSD32_SYS_AUE_freebsd32_utimes	AUE_UTIMES
549 #define	FREEBSD32_SYS_AUE_freebsd32_adjtime	AUE_ADJTIME
550 #define	FREEBSD32_SYS_AUE_freebsd32_semsys	AUE_SEMSYS
551 #define	FREEBSD32_SYS_AUE_freebsd32_msgsys	AUE_MSGSYS
552 #define	FREEBSD32_SYS_AUE_freebsd32_shmsys	AUE_SHMSYS
553 #define	FREEBSD32_SYS_AUE_freebsd32_stat	AUE_STAT
554 #define	FREEBSD32_SYS_AUE_freebsd32_fstat	AUE_FSTAT
555 #define	FREEBSD32_SYS_AUE_freebsd32_lstat	AUE_LSTAT
556 #define	FREEBSD32_SYS_AUE_freebsd32_sysctl	AUE_SYSCTL
557 #define	FREEBSD32_SYS_AUE_freebsd32_futimes	AUE_FUTIMES
558 #define	FREEBSD32_SYS_AUE_freebsd32_semctl	AUE_SEMCTL
559 #define	FREEBSD32_SYS_AUE_freebsd32_msgctl	AUE_MSGCTL
560 #define	FREEBSD32_SYS_AUE_freebsd32_msgsnd	AUE_MSGSND
561 #define	FREEBSD32_SYS_AUE_freebsd32_msgrcv	AUE_MSGRCV
562 #define	FREEBSD32_SYS_AUE_freebsd32_shmctl	AUE_SHMCTL
563 #define	FREEBSD32_SYS_AUE_freebsd32_clock_gettime	AUE_NULL
564 #define	FREEBSD32_SYS_AUE_freebsd32_clock_settime	AUE_CLOCK_SETTIME
565 #define	FREEBSD32_SYS_AUE_freebsd32_clock_getres	AUE_NULL
566 #define	FREEBSD32_SYS_AUE_freebsd32_nanosleep	AUE_NULL
567 #define	FREEBSD32_SYS_AUE_freebsd32_lutimes	AUE_LUTIMES
568 #define	FREEBSD32_SYS_AUE_freebsd32_preadv	AUE_PREADV
569 #define	FREEBSD32_SYS_AUE_freebsd32_pwritev	AUE_PWRITEV
570 #define	FREEBSD32_SYS_AUE_freebsd32_modstat	AUE_NULL
571 #define	FREEBSD32_SYS_AUE_freebsd32_sigtimedwait	AUE_SIGWAIT
572 #define	FREEBSD32_SYS_AUE_freebsd32_sigwaitinfo	AUE_NULL
573 #define	FREEBSD32_SYS_AUE_freebsd32_kevent	AUE_NULL
574 #define	FREEBSD32_SYS_AUE_freebsd32_sendfile	AUE_SENDFILE
575 #define	FREEBSD32_SYS_AUE_freebsd32_sigaction	AUE_SIGACTION
576 #define	FREEBSD32_SYS_AUE_freebsd32_sigreturn	AUE_SIGRETURN
577 #define	FREEBSD32_SYS_AUE_freebsd32_getcontext	AUE_NULL
578 #define	FREEBSD32_SYS_AUE_freebsd32_setcontext	AUE_NULL
579 #define	FREEBSD32_SYS_AUE_freebsd32_swapcontext	AUE_NULL
580 #define	FREEBSD32_SYS_AUE_freebsd32_umtx_lock	AUE_NULL
581 #define	FREEBSD32_SYS_AUE_freebsd32_umtx_unlock	AUE_NULL
582 #define	FREEBSD32_SYS_AUE_freebsd32_thr_suspend	AUE_NULL
583 #define	FREEBSD32_SYS_AUE_freebsd32_umtx_op	AUE_NULL
584 #define	FREEBSD32_SYS_AUE_freebsd32_thr_new	AUE_NULL
585 #define	FREEBSD32_SYS_AUE_freebsd32_pread	AUE_PREAD
586 #define	FREEBSD32_SYS_AUE_freebsd32_pwrite	AUE_PWRITE
587 #define	FREEBSD32_SYS_AUE_freebsd32_mmap	AUE_MMAP
588 #define	FREEBSD32_SYS_AUE_freebsd32_lseek	AUE_LSEEK
589 #define	FREEBSD32_SYS_AUE_freebsd32_truncate	AUE_TRUNCATE
590 #define	FREEBSD32_SYS_AUE_freebsd32_ftruncate	AUE_FTRUNCATE
591 
592 #undef PAD_
593 #undef PADL_
594 #undef PADR_
595 
596 #endif /* !_FREEBSD32_SYSPROTO_H_ */
597