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.100 2008/03/31 12:08:30 kib 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 struct freebsd32_fexecve_args { 332 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 333 char argv_l_[PADL_(u_int32_t *)]; u_int32_t * argv; char argv_r_[PADR_(u_int32_t *)]; 334 char envv_l_[PADL_(u_int32_t *)]; u_int32_t * envv; char envv_r_[PADR_(u_int32_t *)]; 335 }; 336 struct freebsd32_fstatat_args { 337 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 338 char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; 339 char buf_l_[PADL_(struct stat *)]; struct stat * buf; char buf_r_[PADR_(struct stat *)]; 340 char flag_l_[PADL_(int)]; int flag; char flag_r_[PADR_(int)]; 341 }; 342 struct freebsd32_futimesat_args { 343 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 344 char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; 345 char times_l_[PADL_(struct timeval *)]; struct timeval * times; char times_r_[PADR_(struct timeval *)]; 346 }; 347 int freebsd32_wait4(struct thread *, struct freebsd32_wait4_args *); 348 int freebsd32_recvmsg(struct thread *, struct freebsd32_recvmsg_args *); 349 int freebsd32_sendmsg(struct thread *, struct freebsd32_sendmsg_args *); 350 int freebsd32_recvfrom(struct thread *, struct freebsd32_recvfrom_args *); 351 int freebsd32_sigaltstack(struct thread *, struct freebsd32_sigaltstack_args *); 352 int freebsd32_execve(struct thread *, struct freebsd32_execve_args *); 353 int freebsd32_setitimer(struct thread *, struct freebsd32_setitimer_args *); 354 int freebsd32_getitimer(struct thread *, struct freebsd32_getitimer_args *); 355 int freebsd32_select(struct thread *, struct freebsd32_select_args *); 356 int freebsd32_gettimeofday(struct thread *, struct freebsd32_gettimeofday_args *); 357 int freebsd32_getrusage(struct thread *, struct freebsd32_getrusage_args *); 358 int freebsd32_readv(struct thread *, struct freebsd32_readv_args *); 359 int freebsd32_writev(struct thread *, struct freebsd32_writev_args *); 360 int freebsd32_settimeofday(struct thread *, struct freebsd32_settimeofday_args *); 361 int freebsd32_utimes(struct thread *, struct freebsd32_utimes_args *); 362 int freebsd32_adjtime(struct thread *, struct freebsd32_adjtime_args *); 363 int freebsd32_semsys(struct thread *, struct freebsd32_semsys_args *); 364 int freebsd32_msgsys(struct thread *, struct freebsd32_msgsys_args *); 365 int freebsd32_shmsys(struct thread *, struct freebsd32_shmsys_args *); 366 int freebsd32_stat(struct thread *, struct freebsd32_stat_args *); 367 int freebsd32_fstat(struct thread *, struct freebsd32_fstat_args *); 368 int freebsd32_lstat(struct thread *, struct freebsd32_lstat_args *); 369 int freebsd32_sysctl(struct thread *, struct freebsd32_sysctl_args *); 370 int freebsd32_futimes(struct thread *, struct freebsd32_futimes_args *); 371 int freebsd32_semctl(struct thread *, struct freebsd32_semctl_args *); 372 int freebsd32_msgctl(struct thread *, struct freebsd32_msgctl_args *); 373 int freebsd32_msgsnd(struct thread *, struct freebsd32_msgsnd_args *); 374 int freebsd32_msgrcv(struct thread *, struct freebsd32_msgrcv_args *); 375 int freebsd32_shmctl(struct thread *, struct freebsd32_shmctl_args *); 376 int freebsd32_clock_gettime(struct thread *, struct freebsd32_clock_gettime_args *); 377 int freebsd32_clock_settime(struct thread *, struct freebsd32_clock_settime_args *); 378 int freebsd32_clock_getres(struct thread *, struct freebsd32_clock_getres_args *); 379 int freebsd32_nanosleep(struct thread *, struct freebsd32_nanosleep_args *); 380 int freebsd32_lutimes(struct thread *, struct freebsd32_lutimes_args *); 381 int freebsd32_preadv(struct thread *, struct freebsd32_preadv_args *); 382 int freebsd32_pwritev(struct thread *, struct freebsd32_pwritev_args *); 383 int freebsd32_modstat(struct thread *, struct freebsd32_modstat_args *); 384 int freebsd32_sigtimedwait(struct thread *, struct freebsd32_sigtimedwait_args *); 385 int freebsd32_sigwaitinfo(struct thread *, struct freebsd32_sigwaitinfo_args *); 386 int freebsd32_kevent(struct thread *, struct freebsd32_kevent_args *); 387 int freebsd32_sendfile(struct thread *, struct freebsd32_sendfile_args *); 388 int freebsd32_sigaction(struct thread *, struct freebsd32_sigaction_args *); 389 int freebsd32_sigreturn(struct thread *, struct freebsd32_sigreturn_args *); 390 int freebsd32_getcontext(struct thread *, struct freebsd32_getcontext_args *); 391 int freebsd32_setcontext(struct thread *, struct freebsd32_setcontext_args *); 392 int freebsd32_swapcontext(struct thread *, struct freebsd32_swapcontext_args *); 393 int freebsd32_umtx_lock(struct thread *, struct freebsd32_umtx_lock_args *); 394 int freebsd32_umtx_unlock(struct thread *, struct freebsd32_umtx_unlock_args *); 395 int freebsd32_thr_suspend(struct thread *, struct freebsd32_thr_suspend_args *); 396 int freebsd32_umtx_op(struct thread *, struct freebsd32_umtx_op_args *); 397 int freebsd32_thr_new(struct thread *, struct freebsd32_thr_new_args *); 398 int freebsd32_pread(struct thread *, struct freebsd32_pread_args *); 399 int freebsd32_pwrite(struct thread *, struct freebsd32_pwrite_args *); 400 int freebsd32_mmap(struct thread *, struct freebsd32_mmap_args *); 401 int freebsd32_lseek(struct thread *, struct freebsd32_lseek_args *); 402 int freebsd32_truncate(struct thread *, struct freebsd32_truncate_args *); 403 int freebsd32_ftruncate(struct thread *, struct freebsd32_ftruncate_args *); 404 int freebsd32_fexecve(struct thread *, struct freebsd32_fexecve_args *); 405 int freebsd32_fstatat(struct thread *, struct freebsd32_fstatat_args *); 406 int freebsd32_futimesat(struct thread *, struct freebsd32_futimesat_args *); 407 408 #ifdef COMPAT_43 409 410 struct ofreebsd32_sigaction_args { 411 char signum_l_[PADL_(int)]; int signum; char signum_r_[PADR_(int)]; 412 char nsa_l_[PADL_(struct osigaction32 *)]; struct osigaction32 * nsa; char nsa_r_[PADR_(struct osigaction32 *)]; 413 char osa_l_[PADL_(struct osigaction32 *)]; struct osigaction32 * osa; char osa_r_[PADR_(struct osigaction32 *)]; 414 }; 415 struct ofreebsd32_sigprocmask_args { 416 char how_l_[PADL_(int)]; int how; char how_r_[PADR_(int)]; 417 char mask_l_[PADL_(osigset_t)]; osigset_t mask; char mask_r_[PADR_(osigset_t)]; 418 }; 419 struct ofreebsd32_sigvec_args { 420 char signum_l_[PADL_(int)]; int signum; char signum_r_[PADR_(int)]; 421 char nsv_l_[PADL_(struct sigvec32 *)]; struct sigvec32 * nsv; char nsv_r_[PADR_(struct sigvec32 *)]; 422 char osv_l_[PADL_(struct sigvec32 *)]; struct sigvec32 * osv; char osv_r_[PADR_(struct sigvec32 *)]; 423 }; 424 struct ofreebsd32_sigblock_args { 425 char mask_l_[PADL_(int)]; int mask; char mask_r_[PADR_(int)]; 426 }; 427 struct ofreebsd32_sigsetmask_args { 428 char mask_l_[PADL_(int)]; int mask; char mask_r_[PADR_(int)]; 429 }; 430 struct ofreebsd32_sigsuspend_args { 431 char mask_l_[PADL_(int)]; int mask; char mask_r_[PADR_(int)]; 432 }; 433 struct ofreebsd32_sigstack_args { 434 char nss_l_[PADL_(struct sigstack32 *)]; struct sigstack32 * nss; char nss_r_[PADR_(struct sigstack32 *)]; 435 char oss_l_[PADL_(struct sigstack32 *)]; struct sigstack32 * oss; char oss_r_[PADR_(struct sigstack32 *)]; 436 }; 437 int ofreebsd32_sigaction(struct thread *, struct ofreebsd32_sigaction_args *); 438 int ofreebsd32_sigprocmask(struct thread *, struct ofreebsd32_sigprocmask_args *); 439 int ofreebsd32_sigpending(struct thread *, struct ofreebsd32_sigpending_args *); 440 int ofreebsd32_sigvec(struct thread *, struct ofreebsd32_sigvec_args *); 441 int ofreebsd32_sigblock(struct thread *, struct ofreebsd32_sigblock_args *); 442 int ofreebsd32_sigsetmask(struct thread *, struct ofreebsd32_sigsetmask_args *); 443 int ofreebsd32_sigsuspend(struct thread *, struct ofreebsd32_sigsuspend_args *); 444 int ofreebsd32_sigstack(struct thread *, struct ofreebsd32_sigstack_args *); 445 446 #endif /* COMPAT_43 */ 447 448 449 #ifdef COMPAT_FREEBSD4 450 451 struct freebsd4_freebsd32_getfsstat_args { 452 char buf_l_[PADL_(struct statfs32 *)]; struct statfs32 * buf; char buf_r_[PADR_(struct statfs32 *)]; 453 char bufsize_l_[PADL_(long)]; long bufsize; char bufsize_r_[PADR_(long)]; 454 char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)]; 455 }; 456 struct freebsd4_freebsd32_statfs_args { 457 char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; 458 char buf_l_[PADL_(struct statfs32 *)]; struct statfs32 * buf; char buf_r_[PADR_(struct statfs32 *)]; 459 }; 460 struct freebsd4_freebsd32_fstatfs_args { 461 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 462 char buf_l_[PADL_(struct statfs32 *)]; struct statfs32 * buf; char buf_r_[PADR_(struct statfs32 *)]; 463 }; 464 struct freebsd4_freebsd32_fhstatfs_args { 465 char u_fhp_l_[PADL_(const struct fhandle *)]; const struct fhandle * u_fhp; char u_fhp_r_[PADR_(const struct fhandle *)]; 466 char buf_l_[PADL_(struct statfs32 *)]; struct statfs32 * buf; char buf_r_[PADR_(struct statfs32 *)]; 467 }; 468 struct freebsd4_freebsd32_sendfile_args { 469 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 470 char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)]; 471 char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)]; 472 char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)]; 473 char nbytes_l_[PADL_(size_t)]; size_t nbytes; char nbytes_r_[PADR_(size_t)]; 474 char hdtr_l_[PADL_(struct sf_hdtr32 *)]; struct sf_hdtr32 * hdtr; char hdtr_r_[PADR_(struct sf_hdtr32 *)]; 475 char sbytes_l_[PADL_(off_t *)]; off_t * sbytes; char sbytes_r_[PADR_(off_t *)]; 476 char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)]; 477 }; 478 struct freebsd4_freebsd32_sigaction_args { 479 char sig_l_[PADL_(int)]; int sig; char sig_r_[PADR_(int)]; 480 char act_l_[PADL_(struct sigaction32 *)]; struct sigaction32 * act; char act_r_[PADR_(struct sigaction32 *)]; 481 char oact_l_[PADL_(struct sigaction32 *)]; struct sigaction32 * oact; char oact_r_[PADR_(struct sigaction32 *)]; 482 }; 483 struct freebsd4_freebsd32_sigreturn_args { 484 char sigcntxp_l_[PADL_(const struct freebsd4_freebsd32_ucontext *)]; const struct freebsd4_freebsd32_ucontext * sigcntxp; char sigcntxp_r_[PADR_(const struct freebsd4_freebsd32_ucontext *)]; 485 }; 486 int freebsd4_freebsd32_getfsstat(struct thread *, struct freebsd4_freebsd32_getfsstat_args *); 487 int freebsd4_freebsd32_statfs(struct thread *, struct freebsd4_freebsd32_statfs_args *); 488 int freebsd4_freebsd32_fstatfs(struct thread *, struct freebsd4_freebsd32_fstatfs_args *); 489 int freebsd4_freebsd32_fhstatfs(struct thread *, struct freebsd4_freebsd32_fhstatfs_args *); 490 int freebsd4_freebsd32_sendfile(struct thread *, struct freebsd4_freebsd32_sendfile_args *); 491 int freebsd4_freebsd32_sigaction(struct thread *, struct freebsd4_freebsd32_sigaction_args *); 492 int freebsd4_freebsd32_sigreturn(struct thread *, struct freebsd4_freebsd32_sigreturn_args *); 493 494 #endif /* COMPAT_FREEBSD4 */ 495 496 497 #ifdef COMPAT_FREEBSD6 498 499 struct freebsd6_freebsd32_pread_args { 500 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 501 char buf_l_[PADL_(void *)]; void * buf; char buf_r_[PADR_(void *)]; 502 char nbyte_l_[PADL_(size_t)]; size_t nbyte; char nbyte_r_[PADR_(size_t)]; 503 char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)]; 504 char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)]; 505 char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)]; 506 }; 507 struct freebsd6_freebsd32_pwrite_args { 508 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 509 char buf_l_[PADL_(const void *)]; const void * buf; char buf_r_[PADR_(const void *)]; 510 char nbyte_l_[PADL_(size_t)]; size_t nbyte; char nbyte_r_[PADR_(size_t)]; 511 char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)]; 512 char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)]; 513 char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)]; 514 }; 515 struct freebsd6_freebsd32_mmap_args { 516 char addr_l_[PADL_(caddr_t)]; caddr_t addr; char addr_r_[PADR_(caddr_t)]; 517 char len_l_[PADL_(size_t)]; size_t len; char len_r_[PADR_(size_t)]; 518 char prot_l_[PADL_(int)]; int prot; char prot_r_[PADR_(int)]; 519 char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)]; 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 poslo_l_[PADL_(u_int32_t)]; u_int32_t poslo; char poslo_r_[PADR_(u_int32_t)]; 523 char poshi_l_[PADL_(u_int32_t)]; u_int32_t poshi; char poshi_r_[PADR_(u_int32_t)]; 524 }; 525 struct freebsd6_freebsd32_lseek_args { 526 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 527 char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)]; 528 char offsetlo_l_[PADL_(u_int32_t)]; u_int32_t offsetlo; char offsetlo_r_[PADR_(u_int32_t)]; 529 char offsethi_l_[PADL_(u_int32_t)]; u_int32_t offsethi; char offsethi_r_[PADR_(u_int32_t)]; 530 char whence_l_[PADL_(int)]; int whence; char whence_r_[PADR_(int)]; 531 }; 532 struct freebsd6_freebsd32_truncate_args { 533 char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)]; 534 char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)]; 535 char lengthlo_l_[PADL_(u_int32_t)]; u_int32_t lengthlo; char lengthlo_r_[PADR_(u_int32_t)]; 536 char lengthhi_l_[PADL_(u_int32_t)]; u_int32_t lengthhi; char lengthhi_r_[PADR_(u_int32_t)]; 537 }; 538 struct freebsd6_freebsd32_ftruncate_args { 539 char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)]; 540 char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)]; 541 char lengthlo_l_[PADL_(u_int32_t)]; u_int32_t lengthlo; char lengthlo_r_[PADR_(u_int32_t)]; 542 char lengthhi_l_[PADL_(u_int32_t)]; u_int32_t lengthhi; char lengthhi_r_[PADR_(u_int32_t)]; 543 }; 544 int freebsd6_freebsd32_pread(struct thread *, struct freebsd6_freebsd32_pread_args *); 545 int freebsd6_freebsd32_pwrite(struct thread *, struct freebsd6_freebsd32_pwrite_args *); 546 int freebsd6_freebsd32_mmap(struct thread *, struct freebsd6_freebsd32_mmap_args *); 547 int freebsd6_freebsd32_lseek(struct thread *, struct freebsd6_freebsd32_lseek_args *); 548 int freebsd6_freebsd32_truncate(struct thread *, struct freebsd6_freebsd32_truncate_args *); 549 int freebsd6_freebsd32_ftruncate(struct thread *, struct freebsd6_freebsd32_ftruncate_args *); 550 551 #endif /* COMPAT_FREEBSD6 */ 552 553 #define FREEBSD32_SYS_AUE_freebsd32_wait4 AUE_WAIT4 554 #define FREEBSD32_SYS_AUE_freebsd32_recvmsg AUE_RECVMSG 555 #define FREEBSD32_SYS_AUE_freebsd32_sendmsg AUE_SENDMSG 556 #define FREEBSD32_SYS_AUE_freebsd32_recvfrom AUE_RECVFROM 557 #define FREEBSD32_SYS_AUE_freebsd32_sigaltstack AUE_SIGALTSTACK 558 #define FREEBSD32_SYS_AUE_freebsd32_execve AUE_EXECVE 559 #define FREEBSD32_SYS_AUE_freebsd32_setitimer AUE_SETITIMER 560 #define FREEBSD32_SYS_AUE_freebsd32_getitimer AUE_GETITIMER 561 #define FREEBSD32_SYS_AUE_freebsd32_select AUE_SELECT 562 #define FREEBSD32_SYS_AUE_freebsd32_gettimeofday AUE_GETTIMEOFDAY 563 #define FREEBSD32_SYS_AUE_freebsd32_getrusage AUE_GETRUSAGE 564 #define FREEBSD32_SYS_AUE_freebsd32_readv AUE_READV 565 #define FREEBSD32_SYS_AUE_freebsd32_writev AUE_WRITEV 566 #define FREEBSD32_SYS_AUE_freebsd32_settimeofday AUE_SETTIMEOFDAY 567 #define FREEBSD32_SYS_AUE_freebsd32_utimes AUE_UTIMES 568 #define FREEBSD32_SYS_AUE_freebsd32_adjtime AUE_ADJTIME 569 #define FREEBSD32_SYS_AUE_freebsd32_semsys AUE_SEMSYS 570 #define FREEBSD32_SYS_AUE_freebsd32_msgsys AUE_MSGSYS 571 #define FREEBSD32_SYS_AUE_freebsd32_shmsys AUE_SHMSYS 572 #define FREEBSD32_SYS_AUE_freebsd32_stat AUE_STAT 573 #define FREEBSD32_SYS_AUE_freebsd32_fstat AUE_FSTAT 574 #define FREEBSD32_SYS_AUE_freebsd32_lstat AUE_LSTAT 575 #define FREEBSD32_SYS_AUE_freebsd32_sysctl AUE_SYSCTL 576 #define FREEBSD32_SYS_AUE_freebsd32_futimes AUE_FUTIMES 577 #define FREEBSD32_SYS_AUE_freebsd32_semctl AUE_SEMCTL 578 #define FREEBSD32_SYS_AUE_freebsd32_msgctl AUE_MSGCTL 579 #define FREEBSD32_SYS_AUE_freebsd32_msgsnd AUE_MSGSND 580 #define FREEBSD32_SYS_AUE_freebsd32_msgrcv AUE_MSGRCV 581 #define FREEBSD32_SYS_AUE_freebsd32_shmctl AUE_SHMCTL 582 #define FREEBSD32_SYS_AUE_freebsd32_clock_gettime AUE_NULL 583 #define FREEBSD32_SYS_AUE_freebsd32_clock_settime AUE_CLOCK_SETTIME 584 #define FREEBSD32_SYS_AUE_freebsd32_clock_getres AUE_NULL 585 #define FREEBSD32_SYS_AUE_freebsd32_nanosleep AUE_NULL 586 #define FREEBSD32_SYS_AUE_freebsd32_lutimes AUE_LUTIMES 587 #define FREEBSD32_SYS_AUE_freebsd32_preadv AUE_PREADV 588 #define FREEBSD32_SYS_AUE_freebsd32_pwritev AUE_PWRITEV 589 #define FREEBSD32_SYS_AUE_freebsd32_modstat AUE_NULL 590 #define FREEBSD32_SYS_AUE_freebsd32_sigtimedwait AUE_SIGWAIT 591 #define FREEBSD32_SYS_AUE_freebsd32_sigwaitinfo AUE_NULL 592 #define FREEBSD32_SYS_AUE_freebsd32_kevent AUE_NULL 593 #define FREEBSD32_SYS_AUE_freebsd32_sendfile AUE_SENDFILE 594 #define FREEBSD32_SYS_AUE_freebsd32_sigaction AUE_SIGACTION 595 #define FREEBSD32_SYS_AUE_freebsd32_sigreturn AUE_SIGRETURN 596 #define FREEBSD32_SYS_AUE_freebsd32_getcontext AUE_NULL 597 #define FREEBSD32_SYS_AUE_freebsd32_setcontext AUE_NULL 598 #define FREEBSD32_SYS_AUE_freebsd32_swapcontext AUE_NULL 599 #define FREEBSD32_SYS_AUE_freebsd32_umtx_lock AUE_NULL 600 #define FREEBSD32_SYS_AUE_freebsd32_umtx_unlock AUE_NULL 601 #define FREEBSD32_SYS_AUE_freebsd32_thr_suspend AUE_NULL 602 #define FREEBSD32_SYS_AUE_freebsd32_umtx_op AUE_NULL 603 #define FREEBSD32_SYS_AUE_freebsd32_thr_new AUE_NULL 604 #define FREEBSD32_SYS_AUE_freebsd32_pread AUE_PREAD 605 #define FREEBSD32_SYS_AUE_freebsd32_pwrite AUE_PWRITE 606 #define FREEBSD32_SYS_AUE_freebsd32_mmap AUE_MMAP 607 #define FREEBSD32_SYS_AUE_freebsd32_lseek AUE_LSEEK 608 #define FREEBSD32_SYS_AUE_freebsd32_truncate AUE_TRUNCATE 609 #define FREEBSD32_SYS_AUE_freebsd32_ftruncate AUE_FTRUNCATE 610 #define FREEBSD32_SYS_AUE_freebsd32_fexecve AUE_FEXECVE 611 #define FREEBSD32_SYS_AUE_freebsd32_fstatat AUE_FSTATAT 612 #define FREEBSD32_SYS_AUE_freebsd32_futimesat AUE_FUTIMESAT 613 614 #undef PAD_ 615 #undef PADL_ 616 #undef PADR_ 617 618 #endif /* !_FREEBSD32_SYSPROTO_H_ */ 619