Lines Matching defs:p

17 		const struct sys_syscall_args *p = params;
18 iarg[0] = SCARG(p, code); /* int */
19 iarg[1] = SCARG(p, args[0]); /* register_t */
25 const struct sys_exit_args *p = params;
26 iarg[0] = SCARG(p, rval); /* int */
37 const struct sys_read_args *p = params;
38 iarg[0] = SCARG(p, fd); /* int */
39 uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
40 uarg[2] = SCARG(p, nbyte); /* size_t */
46 const struct sys_write_args *p = params;
47 iarg[0] = SCARG(p, fd); /* int */
48 uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */
49 uarg[2] = SCARG(p, nbyte); /* size_t */
55 const struct sys_open_args *p = params;
56 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
57 iarg[1] = SCARG(p, flags); /* int */
58 iarg[2] = SCARG(p, mode); /* mode_t */
64 const struct sys_close_args *p = params;
65 iarg[0] = SCARG(p, fd); /* int */
71 const struct compat_50_sys_wait4_args *p = params;
72 iarg[0] = SCARG(p, pid); /* pid_t */
73 uarg[1] = (intptr_t) SCARG(p, status); /* int * */
74 iarg[2] = SCARG(p, options); /* int */
75 uarg[3] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */
81 const struct compat_43_sys_creat_args *p = params;
82 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
83 iarg[1] = SCARG(p, mode); /* mode_t */
89 const struct sys_link_args *p = params;
90 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
91 uarg[1] = (intptr_t) SCARG(p, link); /* const char * */
97 const struct sys_unlink_args *p = params;
98 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
104 const struct sys_chdir_args *p = params;
105 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
111 const struct sys_fchdir_args *p = params;
112 iarg[0] = SCARG(p, fd); /* int */
118 const struct compat_50_sys_mknod_args *p = params;
119 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
120 iarg[1] = SCARG(p, mode); /* mode_t */
121 uarg[2] = SCARG(p, dev); /* uint32_t */
127 const struct sys_chmod_args *p = params;
128 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
129 iarg[1] = SCARG(p, mode); /* mode_t */
135 const struct sys_chown_args *p = params;
136 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
137 uarg[1] = SCARG(p, uid); /* uid_t */
138 iarg[2] = SCARG(p, gid); /* gid_t */
144 const struct sys_obreak_args *p = params;
145 uarg[0] = (intptr_t) SCARG(p, nsize); /* char * */
151 const struct compat_20_sys_getfsstat_args *p = params;
152 uarg[0] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */
153 iarg[1] = SCARG(p, bufsize); /* long */
154 iarg[2] = SCARG(p, flags); /* int */
160 const struct compat_43_sys_lseek_args *p = params;
161 iarg[0] = SCARG(p, fd); /* int */
162 iarg[1] = SCARG(p, offset); /* long */
163 iarg[2] = SCARG(p, whence); /* int */
174 const struct compat_40_sys_mount_args *p = params;
175 uarg[0] = (intptr_t) SCARG(p, type); /* const char * */
176 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
177 iarg[2] = SCARG(p, flags); /* int */
178 uarg[3] = (intptr_t) SCARG(p, data); /* void * */
184 const struct sys_unmount_args *p = params;
185 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
186 iarg[1] = SCARG(p, flags); /* int */
192 const struct sys_setuid_args *p = params;
193 uarg[0] = SCARG(p, uid); /* uid_t */
209 const struct sys_ptrace_args *p = params;
210 iarg[0] = SCARG(p, req); /* int */
211 iarg[1] = SCARG(p, pid); /* pid_t */
212 uarg[2] = (intptr_t) SCARG(p, addr); /* void * */
213 iarg[3] = SCARG(p, data); /* int */
219 const struct sys_recvmsg_args *p = params;
220 iarg[0] = SCARG(p, s); /* int */
221 uarg[1] = (intptr_t) SCARG(p, msg); /* struct msghdr * */
222 iarg[2] = SCARG(p, flags); /* int */
228 const struct sys_sendmsg_args *p = params;
229 iarg[0] = SCARG(p, s); /* int */
230 uarg[1] = (intptr_t) SCARG(p, msg); /* const struct msghdr * */
231 iarg[2] = SCARG(p, flags); /* int */
237 const struct sys_recvfrom_args *p = params;
238 iarg[0] = SCARG(p, s); /* int */
239 uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
240 uarg[2] = SCARG(p, len); /* size_t */
241 iarg[3] = SCARG(p, flags); /* int */
242 uarg[4] = (intptr_t) SCARG(p, from); /* struct sockaddr * */
243 uarg[5] = (intptr_t) SCARG(p, fromlenaddr); /* socklen_t * */
249 const struct sys_accept_args *p = params;
250 iarg[0] = SCARG(p, s); /* int */
251 uarg[1] = (intptr_t) SCARG(p, name); /* struct sockaddr * */
252 uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */
258 const struct sys_getpeername_args *p = params;
259 iarg[0] = SCARG(p, fdes); /* int */
260 uarg[1] = (intptr_t) SCARG(p, asa); /* struct sockaddr * */
261 uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */
267 const struct sys_getsockname_args *p = params;
268 iarg[0] = SCARG(p, fdes); /* int */
269 uarg[1] = (intptr_t) SCARG(p, asa); /* struct sockaddr * */
270 uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */
276 const struct sys_access_args *p = params;
277 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
278 iarg[1] = SCARG(p, flags); /* int */
284 const struct sys_chflags_args *p = params;
285 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
286 uarg[1] = SCARG(p, flags); /* u_long */
292 const struct sys_fchflags_args *p = params;
293 iarg[0] = SCARG(p, fd); /* int */
294 uarg[1] = SCARG(p, flags); /* u_long */
305 const struct sys_kill_args *p = params;
306 iarg[0] = SCARG(p, pid); /* pid_t */
307 iarg[1] = SCARG(p, signum); /* int */
313 const struct compat_43_sys_stat_args *p = params;
314 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
315 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat43 * */
326 const struct compat_43_sys_lstat_args *p = params;
327 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
328 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat43 * */
334 const struct sys_dup_args *p = params;
335 iarg[0] = SCARG(p, fd); /* int */
351 const struct sys_profil_args *p = params;
352 uarg[0] = (intptr_t) SCARG(p, samples); /* char * */
353 uarg[1] = SCARG(p, size); /* size_t */
354 uarg[2] = SCARG(p, offset); /* u_long */
355 uarg[3] = SCARG(p, scale); /* u_int */
361 const struct sys_ktrace_args *p = params;
362 uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */
363 iarg[1] = SCARG(p, ops); /* int */
364 iarg[2] = SCARG(p, facs); /* int */
365 iarg[3] = SCARG(p, pid); /* pid_t */
371 const struct compat_13_sys_sigaction_args *p = params;
372 iarg[0] = SCARG(p, signum); /* int */
373 uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction13 * */
374 uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction13 * */
385 const struct compat_13_sys_sigprocmask_args *p = params;
386 iarg[0] = SCARG(p, how); /* int */
387 iarg[1] = SCARG(p, mask); /* int */
393 const struct sys___getlogin_args *p = params;
394 uarg[0] = (intptr_t) SCARG(p, namebuf); /* char * */
395 uarg[1] = SCARG(p, namelen); /* size_t */
401 const struct sys___setlogin_args *p = params;
402 uarg[0] = (intptr_t) SCARG(p, namebuf); /* const char * */
408 const struct sys_acct_args *p = params;
409 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
420 const struct compat_13_sys_sigaltstack_args *p = params;
421 uarg[0] = (intptr_t) SCARG(p, nss); /* const struct sigaltstack13 * */
422 uarg[1] = (intptr_t) SCARG(p, oss); /* struct sigaltstack13 * */
428 const struct sys_ioctl_args *p = params;
429 iarg[0] = SCARG(p, fd); /* int */
430 uarg[1] = SCARG(p, com); /* u_long */
431 uarg[2] = (intptr_t) SCARG(p, data); /* void * */
437 const struct compat_12_sys_reboot_args *p = params;
438 iarg[0] = SCARG(p, opt); /* int */
444 const struct sys_revoke_args *p = params;
445 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
451 const struct sys_symlink_args *p = params;
452 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
453 uarg[1] = (intptr_t) SCARG(p, link); /* const char * */
459 const struct sys_readlink_args *p = params;
460 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
461 uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
462 uarg[2] = SCARG(p, count); /* size_t */
468 const struct sys_execve_args *p = params;
469 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
470 uarg[1] = (intptr_t) SCARG(p, argp); /* char *const * */
471 uarg[2] = (intptr_t) SCARG(p, envp); /* char *const * */
477 const struct sys_umask_args *p = params;
478 iarg[0] = SCARG(p, newmask); /* mode_t */
484 const struct sys_chroot_args *p = params;
485 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
491 const struct compat_43_sys_fstat_args *p = params;
492 iarg[0] = SCARG(p, fd); /* int */
493 uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat43 * */
499 const struct compat_43_sys_getkerninfo_args *p = params;
500 iarg[0] = SCARG(p, op); /* int */
501 uarg[1] = (intptr_t) SCARG(p, where); /* char * */
502 uarg[2] = (intptr_t) SCARG(p, size); /* int * */
503 iarg[3] = SCARG(p, arg); /* int */
514 const struct compat_12_sys_msync_args *p = params;
515 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
516 uarg[1] = SCARG(p, len); /* size_t */
527 const struct compat_43_sys_mmap_args *p = params;
528 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
529 uarg[1] = SCARG(p, len); /* size_t */
530 iarg[2] = SCARG(p, prot); /* int */
531 iarg[3] = SCARG(p, flags); /* int */
532 iarg[4] = SCARG(p, fd); /* int */
533 iarg[5] = SCARG(p, pos); /* long */
539 const struct sys_ovadvise_args *p = params;
540 iarg[0] = SCARG(p, anom); /* int */
546 const struct sys_munmap_args *p = params;
547 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
548 uarg[1] = SCARG(p, len); /* size_t */
554 const struct sys_mprotect_args *p = params;
555 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
556 uarg[1] = SCARG(p, len); /* size_t */
557 iarg[2] = SCARG(p, prot); /* int */
563 const struct sys_madvise_args *p = params;
564 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
565 uarg[1] = SCARG(p, len); /* size_t */
566 iarg[2] = SCARG(p, behav); /* int */
572 const struct sys_mincore_args *p = params;
573 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
574 uarg[1] = SCARG(p, len); /* size_t */
575 uarg[2] = (intptr_t) SCARG(p, vec); /* char * */
581 const struct sys_getgroups_args *p = params;
582 iarg[0] = SCARG(p, gidsetsize); /* int */
583 uarg[1] = (intptr_t) SCARG(p, gidset); /* gid_t * */
589 const struct sys_setgroups_args *p = params;
590 iarg[0] = SCARG(p, gidsetsize); /* int */
591 uarg[1] = (intptr_t) SCARG(p, gidset); /* const gid_t * */
602 const struct sys_setpgid_args *p = params;
603 iarg[0] = SCARG(p, pid); /* pid_t */
604 iarg[1] = SCARG(p, pgid); /* pid_t */
610 const struct compat_50_sys_setitimer_args *p = params;
611 iarg[0] = SCARG(p, which); /* int */
612 uarg[1] = (intptr_t) SCARG(p, itv); /* const struct itimerval50 * */
613 uarg[2] = (intptr_t) SCARG(p, oitv); /* struct itimerval50 * */
624 const struct compat_12_sys_swapon_args *p = params;
625 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
631 const struct compat_50_sys_getitimer_args *p = params;
632 iarg[0] = SCARG(p, which); /* int */
633 uarg[1] = (intptr_t) SCARG(p, itv); /* struct itimerval50 * */
639 const struct compat_43_sys_gethostname_args *p = params;
640 uarg[0] = (intptr_t) SCARG(p, hostname); /* char * */
641 uarg[1] = SCARG(p, len); /* u_int */
647 const struct compat_43_sys_sethostname_args *p = params;
648 uarg[0] = (intptr_t) SCARG(p, hostname); /* char * */
649 uarg[1] = SCARG(p, len); /* u_int */
660 const struct sys_dup2_args *p = params;
661 iarg[0] = SCARG(p, from); /* int */
662 iarg[1] = SCARG(p, to); /* int */
668 const struct sys_getrandom_args *p = params;
669 uarg[0] = (intptr_t) SCARG(p, buf); /* void * */
670 uarg[1] = SCARG(p, buflen); /* size_t */
671 uarg[2] = SCARG(p, flags); /* unsigned int */
677 const struct sys_fcntl_args *p = params;
678 iarg[0] = SCARG(p, fd); /* int */
679 iarg[1] = SCARG(p, cmd); /* int */
680 uarg[2] = (intptr_t) SCARG(p, arg); /* void * */
686 const struct compat_50_sys_select_args *p = params;
687 iarg[0] = SCARG(p, nd); /* int */
688 uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */
689 uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */
690 uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */
691 uarg[4] = (intptr_t) SCARG(p, tv); /* struct timeval50 * */
697 const struct sys_fsync_args *p = params;
698 iarg[0] = SCARG(p, fd); /* int */
704 const struct sys_setpriority_args *p = params;
705 iarg[0] = SCARG(p, which); /* int */
706 iarg[1] = SCARG(p, who); /* id_t */
707 iarg[2] = SCARG(p, prio); /* int */
713 const struct compat_30_sys_socket_args *p = params;
714 iarg[0] = SCARG(p, domain); /* int */
715 iarg[1] = SCARG(p, type); /* int */
716 iarg[2] = SCARG(p, protocol); /* int */
722 const struct sys_connect_args *p = params;
723 iarg[0] = SCARG(p, s); /* int */
724 uarg[1] = (intptr_t) SCARG(p, name); /* const struct sockaddr * */
725 iarg[2] = SCARG(p, namelen); /* socklen_t */
731 const struct compat_43_sys_accept_args *p = params;
732 iarg[0] = SCARG(p, s); /* int */
733 uarg[1] = (intptr_t) SCARG(p, name); /* void * */
734 uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */
740 const struct sys_getpriority_args *p = params;
741 iarg[0] = SCARG(p, which); /* int */
742 iarg[1] = SCARG(p, who); /* id_t */
748 const struct compat_43_sys_send_args *p = params;
749 iarg[0] = SCARG(p, s); /* int */
750 uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
751 iarg[2] = SCARG(p, len); /* int */
752 iarg[3] = SCARG(p, flags); /* int */
758 const struct compat_43_sys_recv_args *p = params;
759 iarg[0] = SCARG(p, s); /* int */
760 uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
761 iarg[2] = SCARG(p, len); /* int */
762 iarg[3] = SCARG(p, flags); /* int */
768 const struct compat_13_sys_sigreturn_args *p = params;
769 uarg[0] = (intptr_t) SCARG(p, sigcntxp); /* struct sigcontext13 * */
775 const struct sys_bind_args *p = params;
776 iarg[0] = SCARG(p, s); /* int */
777 uarg[1] = (intptr_t) SCARG(p, name); /* const struct sockaddr * */
778 iarg[2] = SCARG(p, namelen); /* socklen_t */
784 const struct sys_setsockopt_args *p = params;
785 iarg[0] = SCARG(p, s); /* int */
786 iarg[1] = SCARG(p, level); /* int */
787 iarg[2] = SCARG(p, name); /* int */
788 uarg[3] = (intptr_t) SCARG(p, val); /* const void * */
789 iarg[4] = SCARG(p, valsize); /* socklen_t */
795 const struct sys_listen_args *p = params;
796 iarg[0] = SCARG(p, s); /* int */
797 iarg[1] = SCARG(p, backlog); /* int */
803 const struct compat_43_sys_sigvec_args *p = params;
804 iarg[0] = SCARG(p, signum); /* int */
805 uarg[1] = (intptr_t) SCARG(p, nsv); /* struct sigvec * */
806 uarg[2] = (intptr_t) SCARG(p, osv); /* struct sigvec * */
812 const struct compat_43_sys_sigblock_args *p = params;
813 iarg[0] = SCARG(p, mask); /* int */
819 const struct compat_43_sys_sigsetmask_args *p = params;
820 iarg[0] = SCARG(p, mask); /* int */
826 const struct compat_13_sys_sigsuspend_args *p = params;
827 iarg[0] = SCARG(p, mask); /* int */
833 const struct compat_43_sys_sigstack_args *p = params;
834 uarg[0] = (intptr_t) SCARG(p, nss); /* struct sigstack * */
835 uarg[1] = (intptr_t) SCARG(p, oss); /* struct sigstack * */
841 const struct compat_43_sys_recvmsg_args *p = params;
842 iarg[0] = SCARG(p, s); /* int */
843 uarg[1] = (intptr_t) SCARG(p, msg); /* struct omsghdr * */
844 iarg[2] = SCARG(p, flags); /* int */
850 const struct compat_43_sys_sendmsg_args *p = params;
851 iarg[0] = SCARG(p, s); /* int */
852 uarg[1] = (intptr_t) SCARG(p, msg); /* void * */
853 iarg[2] = SCARG(p, flags); /* int */
859 const struct compat_50_sys_gettimeofday_args *p = params;
860 uarg[0] = (intptr_t) SCARG(p, tp); /* struct timeval50 * */
861 uarg[1] = (intptr_t) SCARG(p, tzp); /* void * */
867 const struct compat_50_sys_getrusage_args *p = params;
868 iarg[0] = SCARG(p, who); /* int */
869 uarg[1] = (intptr_t) SCARG(p, rusage); /* struct rusage50 * */
875 const struct sys_getsockopt_args *p = params;
876 iarg[0] = SCARG(p, s); /* int */
877 iarg[1] = SCARG(p, level); /* int */
878 iarg[2] = SCARG(p, name); /* int */
879 uarg[3] = (intptr_t) SCARG(p, val); /* void * */
880 uarg[4] = (intptr_t) SCARG(p, avalsize); /* socklen_t * */
886 const struct sys_readv_args *p = params;
887 iarg[0] = SCARG(p, fd); /* int */
888 uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
889 iarg[2] = SCARG(p, iovcnt); /* int */
895 const struct sys_writev_args *p = params;
896 iarg[0] = SCARG(p, fd); /* int */
897 uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
898 iarg[2] = SCARG(p, iovcnt); /* int */
904 const struct compat_50_sys_settimeofday_args *p = params;
905 uarg[0] = (intptr_t) SCARG(p, tv); /* const struct timeval50 * */
906 uarg[1] = (intptr_t) SCARG(p, tzp); /* const void * */
912 const struct sys_fchown_args *p = params;
913 iarg[0] = SCARG(p, fd); /* int */
914 uarg[1] = SCARG(p, uid); /* uid_t */
915 iarg[2] = SCARG(p, gid); /* gid_t */
921 const struct sys_fchmod_args *p = params;
922 iarg[0] = SCARG(p, fd); /* int */
923 iarg[1] = SCARG(p, mode); /* mode_t */
929 const struct compat_43_sys_recvfrom_args *p = params;
930 iarg[0] = SCARG(p, s); /* int */
931 uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
932 uarg[2] = SCARG(p, len); /* size_t */
933 iarg[3] = SCARG(p, flags); /* int */
934 uarg[4] = (intptr_t) SCARG(p, from); /* void * */
935 uarg[5] = (intptr_t) SCARG(p, fromlenaddr); /* socklen_t * */
941 const struct sys_setreuid_args *p = params;
942 uarg[0] = SCARG(p, ruid); /* uid_t */
943 uarg[1] = SCARG(p, euid); /* uid_t */
949 const struct sys_setregid_args *p = params;
950 iarg[0] = SCARG(p, rgid); /* gid_t */
951 iarg[1] = SCARG(p, egid); /* gid_t */
957 const struct sys_rename_args *p = params;
958 uarg[0] = (intptr_t) SCARG(p, from); /* const char * */
959 uarg[1] = (intptr_t) SCARG(p, to); /* const char * */
965 const struct compat_43_sys_truncate_args *p = params;
966 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
967 iarg[1] = SCARG(p, length); /* long */
973 const struct compat_43_sys_ftruncate_args *p = params;
974 iarg[0] = SCARG(p, fd); /* int */
975 iarg[1] = SCARG(p, length); /* long */
981 const struct sys_flock_args *p = params;
982 iarg[0] = SCARG(p, fd); /* int */
983 iarg[1] = SCARG(p, how); /* int */
989 const struct sys_mkfifo_args *p = params;
990 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
991 iarg[1] = SCARG(p, mode); /* mode_t */
997 const struct sys_sendto_args *p = params;
998 iarg[0] = SCARG(p, s); /* int */
999 uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */
1000 uarg[2] = SCARG(p, len); /* size_t */
1001 iarg[3] = SCARG(p, flags); /* int */
1002 uarg[4] = (intptr_t) SCARG(p, to); /* const struct sockaddr * */
1003 iarg[5] = SCARG(p, tolen); /* socklen_t */
1009 const struct sys_shutdown_args *p = params;
1010 iarg[0] = SCARG(p, s); /* int */
1011 iarg[1] = SCARG(p, how); /* int */
1017 const struct sys_socketpair_args *p = params;
1018 iarg[0] = SCARG(p, domain); /* int */
1019 iarg[1] = SCARG(p, type); /* int */
1020 iarg[2] = SCARG(p, protocol); /* int */
1021 uarg[3] = (intptr_t) SCARG(p, rsv); /* int * */
1027 const struct sys_mkdir_args *p = params;
1028 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1029 iarg[1] = SCARG(p, mode); /* mode_t */
1035 const struct sys_rmdir_args *p = params;
1036 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1042 const struct compat_50_sys_utimes_args *p = params;
1043 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1044 uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */
1050 const struct compat_50_sys_adjtime_args *p = params;
1051 uarg[0] = (intptr_t) SCARG(p, delta); /* const struct timeval50 * */
1052 uarg[1] = (intptr_t) SCARG(p, olddelta); /* struct timeval50 * */
1058 const struct compat_43_sys_getpeername_args *p = params;
1059 iarg[0] = SCARG(p, fdes); /* int */
1060 uarg[1] = (intptr_t) SCARG(p, asa); /* void * */
1061 uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */
1072 const struct compat_43_sys_sethostid_args *p = params;
1073 iarg[0] = SCARG(p, hostid); /* int32_t */
1079 const struct compat_43_sys_getrlimit_args *p = params;
1080 iarg[0] = SCARG(p, which); /* int */
1081 uarg[1] = (intptr_t) SCARG(p, rlp); /* struct orlimit * */
1087 const struct compat_43_sys_setrlimit_args *p = params;
1088 iarg[0] = SCARG(p, which); /* int */
1089 uarg[1] = (intptr_t) SCARG(p, rlp); /* const struct orlimit * */
1095 const struct compat_43_sys_killpg_args *p = params;
1096 iarg[0] = SCARG(p, pgid); /* int */
1097 iarg[1] = SCARG(p, signum); /* int */
1108 const struct compat_50_sys_quotactl_args *p = params;
1109 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1110 iarg[1] = SCARG(p, cmd); /* int */
1111 iarg[2] = SCARG(p, uid); /* int */
1112 uarg[3] = (intptr_t) SCARG(p, arg); /* void * */
1123 const struct compat_43_sys_getsockname_args *p = params;
1124 iarg[0] = SCARG(p, fdec); /* int */
1125 uarg[1] = (intptr_t) SCARG(p, asa); /* void * */
1126 uarg[2] = (intptr_t) SCARG(p, alen); /* socklen_t * */
1132 const struct sys_nfssvc_args *p = params;
1133 iarg[0] = SCARG(p, flag); /* int */
1134 uarg[1] = (intptr_t) SCARG(p, argp); /* void * */
1140 const struct compat_43_sys_getdirentries_args *p = params;
1141 iarg[0] = SCARG(p, fd); /* int */
1142 uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
1143 uarg[2] = SCARG(p, count); /* u_int */
1144 uarg[3] = (intptr_t) SCARG(p, basep); /* long * */
1150 const struct compat_20_sys_statfs_args *p = params;
1151 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1152 uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */
1158 const struct compat_20_sys_fstatfs_args *p = params;
1159 iarg[0] = SCARG(p, fd); /* int */
1160 uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */
1166 const struct compat_30_sys_getfh_args *p = params;
1167 uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */
1168 uarg[1] = (intptr_t) SCARG(p, fhp); /* struct compat_30_fhandle * */
1174 const struct compat_09_sys_getdomainname_args *p = params;
1175 uarg[0] = (intptr_t) SCARG(p, domainname); /* char * */
1176 iarg[1] = SCARG(p, len); /* int */
1182 const struct compat_09_sys_setdomainname_args *p = params;
1183 uarg[0] = (intptr_t) SCARG(p, domainname); /* char * */
1184 iarg[1] = SCARG(p, len); /* int */
1190 const struct compat_09_sys_uname_args *p = params;
1191 uarg[0] = (intptr_t) SCARG(p, name); /* struct outsname * */
1197 const struct sys_sysarch_args *p = params;
1198 iarg[0] = SCARG(p, op); /* int */
1199 uarg[1] = (intptr_t) SCARG(p, parms); /* void * */
1205 const struct sys___futex_args *p = params;
1206 uarg[0] = (intptr_t) SCARG(p, uaddr); /* int * */
1207 iarg[1] = SCARG(p, op); /* int */
1208 iarg[2] = SCARG(p, val); /* int */
1209 uarg[3] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */
1210 uarg[4] = (intptr_t) SCARG(p, uaddr2); /* int * */
1211 iarg[5] = SCARG(p, val2); /* int */
1212 iarg[6] = SCARG(p, val3); /* int */
1218 const struct sys___futex_set_robust_list_args *p = params;
1219 uarg[0] = (intptr_t) SCARG(p, head); /* void * */
1220 uarg[1] = SCARG(p, len); /* size_t */
1226 const struct sys___futex_get_robust_list_args *p = params;
1227 iarg[0] = SCARG(p, lwpid); /* lwpid_t */
1228 uarg[1] = (intptr_t) SCARG(p, headp); /* void ** */
1229 uarg[2] = (intptr_t) SCARG(p, lenp); /* size_t * */
1236 const struct compat_10_sys_semsys_args *p = params;
1237 iarg[0] = SCARG(p, which); /* int */
1238 iarg[1] = SCARG(p, a2); /* int */
1239 iarg[2] = SCARG(p, a3); /* int */
1240 iarg[3] = SCARG(p, a4); /* int */
1241 iarg[4] = SCARG(p, a5); /* int */
1250 const struct compat_10_sys_msgsys_args *p = params;
1251 iarg[0] = SCARG(p, which); /* int */
1252 iarg[1] = SCARG(p, a2); /* int */
1253 iarg[2] = SCARG(p, a3); /* int */
1254 iarg[3] = SCARG(p, a4); /* int */
1255 iarg[4] = SCARG(p, a5); /* int */
1256 iarg[5] = SCARG(p, a6); /* int */
1265 const struct compat_10_sys_shmsys_args *p = params;
1266 iarg[0] = SCARG(p, which); /* int */
1267 iarg[1] = SCARG(p, a2); /* int */
1268 iarg[2] = SCARG(p, a3); /* int */
1269 iarg[3] = SCARG(p, a4); /* int */
1277 const struct sys_pread_args *p = params;
1278 iarg[0] = SCARG(p, fd); /* int */
1279 uarg[1] = (intptr_t) SCARG(p, buf); /* void * */
1280 uarg[2] = SCARG(p, nbyte); /* size_t */
1281 iarg[3] = SCARG(p, PAD); /* int */
1282 iarg[4] = SCARG(p, offset); /* off_t */
1288 const struct sys_pwrite_args *p = params;
1289 iarg[0] = SCARG(p, fd); /* int */
1290 uarg[1] = (intptr_t) SCARG(p, buf); /* const void * */
1291 uarg[2] = SCARG(p, nbyte); /* size_t */
1292 iarg[3] = SCARG(p, PAD); /* int */
1293 iarg[4] = SCARG(p, offset); /* off_t */
1299 const struct compat_30_sys_ntp_gettime_args *p = params;
1300 uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval30 * */
1307 const struct sys_ntp_adjtime_args *p = params;
1308 uarg[0] = (intptr_t) SCARG(p, tp); /* struct timex * */
1316 const struct sys_timerfd_create_args *p = params;
1317 iarg[0] = SCARG(p, clock_id); /* clockid_t */
1318 iarg[1] = SCARG(p, flags); /* int */
1324 const struct sys_timerfd_settime_args *p = params;
1325 iarg[0] = SCARG(p, fd); /* int */
1326 iarg[1] = SCARG(p, flags); /* int */
1327 uarg[2] = (intptr_t) SCARG(p, new_value); /* const struct itimerspec * */
1328 uarg[3] = (intptr_t) SCARG(p, old_value); /* struct itimerspec * */
1334 const struct sys_timerfd_gettime_args *p = params;
1335 iarg[0] = SCARG(p, fd); /* int */
1336 uarg[1] = (intptr_t) SCARG(p, curr_value); /* struct itimerspec * */
1342 const struct sys_setgid_args *p = params;
1343 iarg[0] = SCARG(p, gid); /* gid_t */
1349 const struct sys_setegid_args *p = params;
1350 iarg[0] = SCARG(p, egid); /* gid_t */
1356 const struct sys_seteuid_args *p = params;
1357 uarg[0] = SCARG(p, euid); /* uid_t */
1363 const struct sys_lfs_bmapv_args *p = params;
1364 uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
1365 uarg[1] = (intptr_t) SCARG(p, blkiov); /* struct block_info * */
1366 iarg[2] = SCARG(p, blkcnt); /* int */
1372 const struct sys_lfs_markv_args *p = params;
1373 uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
1374 uarg[1] = (intptr_t) SCARG(p, blkiov); /* struct block_info * */
1375 iarg[2] = SCARG(p, blkcnt); /* int */
1381 const struct sys_lfs_segclean_args *p = params;
1382 uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
1383 uarg[1] = SCARG(p, segment); /* u_long */
1389 const struct compat_50_sys_lfs_segwait_args *p = params;
1390 uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
1391 uarg[1] = (intptr_t) SCARG(p, tv); /* struct timeval50 * */
1397 const struct compat_12_sys_stat_args *p = params;
1398 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1399 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat12 * */
1405 const struct compat_12_sys_fstat_args *p = params;
1406 iarg[0] = SCARG(p, fd); /* int */
1407 uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat12 * */
1413 const struct compat_12_sys_lstat_args *p = params;
1414 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1415 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat12 * */
1421 const struct sys_pathconf_args *p = params;
1422 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1423 iarg[1] = SCARG(p, name); /* int */
1429 const struct sys_fpathconf_args *p = params;
1430 iarg[0] = SCARG(p, fd); /* int */
1431 iarg[1] = SCARG(p, name); /* int */
1437 const struct sys_getsockopt2_args *p = params;
1438 iarg[0] = SCARG(p, s); /* int */
1439 iarg[1] = SCARG(p, level); /* int */
1440 iarg[2] = SCARG(p, name); /* int */
1441 uarg[3] = (intptr_t) SCARG(p, val); /* void * */
1442 uarg[4] = (intptr_t) SCARG(p, avalsize); /* socklen_t * */
1448 const struct sys_getrlimit_args *p = params;
1449 iarg[0] = SCARG(p, which); /* int */
1450 uarg[1] = (intptr_t) SCARG(p, rlp); /* struct rlimit * */
1456 const struct sys_setrlimit_args *p = params;
1457 iarg[0] = SCARG(p, which); /* int */
1458 uarg[1] = (intptr_t) SCARG(p, rlp); /* const struct rlimit * */
1464 const struct compat_12_sys_getdirentries_args *p = params;
1465 iarg[0] = SCARG(p, fd); /* int */
1466 uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
1467 uarg[2] = SCARG(p, count); /* u_int */
1468 uarg[3] = (intptr_t) SCARG(p, basep); /* long * */
1474 const struct sys_mmap_args *p = params;
1475 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
1476 uarg[1] = SCARG(p, len); /* size_t */
1477 iarg[2] = SCARG(p, prot); /* int */
1478 iarg[3] = SCARG(p, flags); /* int */
1479 iarg[4] = SCARG(p, fd); /* int */
1480 iarg[5] = SCARG(p, PAD); /* long */
1481 iarg[6] = SCARG(p, pos); /* off_t */
1487 const struct sys___syscall_args *p = params;
1488 iarg[0] = SCARG(p, code); /* quad_t */
1489 iarg[1] = SCARG(p, args[0]); /* register_t */
1495 const struct sys_lseek_args *p = params;
1496 iarg[0] = SCARG(p, fd); /* int */
1497 iarg[1] = SCARG(p, PAD); /* int */
1498 iarg[2] = SCARG(p, offset); /* off_t */
1499 iarg[3] = SCARG(p, whence); /* int */
1505 const struct sys_truncate_args *p = params;
1506 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1507 iarg[1] = SCARG(p, PAD); /* int */
1508 iarg[2] = SCARG(p, length); /* off_t */
1514 const struct sys_ftruncate_args *p = params;
1515 iarg[0] = SCARG(p, fd); /* int */
1516 iarg[1] = SCARG(p, PAD); /* int */
1517 iarg[2] = SCARG(p, length); /* off_t */
1523 const struct sys___sysctl_args *p = params;
1524 uarg[0] = (intptr_t) SCARG(p, name); /* const int * */
1525 uarg[1] = SCARG(p, namelen); /* u_int */
1526 uarg[2] = (intptr_t) SCARG(p, oldv); /* void * */
1527 uarg[3] = (intptr_t) SCARG(p, oldlenp); /* size_t * */
1528 uarg[4] = (intptr_t) SCARG(p, newv); /* const void * */
1529 uarg[5] = SCARG(p, newlen); /* size_t */
1535 const struct sys_mlock_args *p = params;
1536 uarg[0] = (intptr_t) SCARG(p, addr); /* const void * */
1537 uarg[1] = SCARG(p, len); /* size_t */
1543 const struct sys_munlock_args *p = params;
1544 uarg[0] = (intptr_t) SCARG(p, addr); /* const void * */
1545 uarg[1] = SCARG(p, len); /* size_t */
1551 const struct sys_undelete_args *p = params;
1552 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
1558 const struct compat_50_sys_futimes_args *p = params;
1559 iarg[0] = SCARG(p, fd); /* int */
1560 uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */
1566 const struct sys_getpgid_args *p = params;
1567 iarg[0] = SCARG(p, pid); /* pid_t */
1573 const struct sys_reboot_args *p = params;
1574 iarg[0] = SCARG(p, opt); /* int */
1575 uarg[1] = (intptr_t) SCARG(p, bootstr); /* char * */
1581 const struct sys_poll_args *p = params;
1582 uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */
1583 uarg[1] = SCARG(p, nfds); /* u_int */
1584 iarg[2] = SCARG(p, timeout); /* int */
1590 const struct sys_afssys_args *p = params;
1591 iarg[0] = SCARG(p, id); /* long */
1592 iarg[1] = SCARG(p, a1); /* long */
1593 iarg[2] = SCARG(p, a2); /* long */
1594 iarg[3] = SCARG(p, a3); /* long */
1595 iarg[4] = SCARG(p, a4); /* long */
1596 iarg[5] = SCARG(p, a5); /* long */
1597 iarg[6] = SCARG(p, a6); /* long */
1603 const struct compat_14_sys___semctl_args *p = params;
1604 iarg[0] = SCARG(p, semid); /* int */
1605 iarg[1] = SCARG(p, semnum); /* int */
1606 iarg[2] = SCARG(p, cmd); /* int */
1607 uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */
1613 const struct sys_semget_args *p = params;
1614 iarg[0] = SCARG(p, key); /* key_t */
1615 iarg[1] = SCARG(p, nsems); /* int */
1616 iarg[2] = SCARG(p, semflg); /* int */
1622 const struct sys_semop_args *p = params;
1623 iarg[0] = SCARG(p, semid); /* int */
1624 uarg[1] = (intptr_t) SCARG(p, sops); /* struct sembuf * */
1625 uarg[2] = SCARG(p, nsops); /* size_t */
1631 const struct sys_semconfig_args *p = params;
1632 iarg[0] = SCARG(p, flag); /* int */
1638 const struct compat_14_sys_msgctl_args *p = params;
1639 iarg[0] = SCARG(p, msqid); /* int */
1640 iarg[1] = SCARG(p, cmd); /* int */
1641 uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds14 * */
1647 const struct sys_msgget_args *p = params;
1648 iarg[0] = SCARG(p, key); /* key_t */
1649 iarg[1] = SCARG(p, msgflg); /* int */
1655 const struct sys_msgsnd_args *p = params;
1656 iarg[0] = SCARG(p, msqid); /* int */
1657 uarg[1] = (intptr_t) SCARG(p, msgp); /* const void * */
1658 uarg[2] = SCARG(p, msgsz); /* size_t */
1659 iarg[3] = SCARG(p, msgflg); /* int */
1665 const struct sys_msgrcv_args *p = params;
1666 iarg[0] = SCARG(p, msqid); /* int */
1667 uarg[1] = (intptr_t) SCARG(p, msgp); /* void * */
1668 uarg[2] = SCARG(p, msgsz); /* size_t */
1669 iarg[3] = SCARG(p, msgtyp); /* long */
1670 iarg[4] = SCARG(p, msgflg); /* int */
1676 const struct sys_shmat_args *p = params;
1677 iarg[0] = SCARG(p, shmid); /* int */
1678 uarg[1] = (intptr_t) SCARG(p, shmaddr); /* const void * */
1679 iarg[2] = SCARG(p, shmflg); /* int */
1685 const struct compat_14_sys_shmctl_args *p = params;
1686 iarg[0] = SCARG(p, shmid); /* int */
1687 iarg[1] = SCARG(p, cmd); /* int */
1688 uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds14 * */
1694 const struct sys_shmdt_args *p = params;
1695 uarg[0] = (intptr_t) SCARG(p, shmaddr); /* const void * */
1701 const struct sys_shmget_args *p = params;
1702 iarg[0] = SCARG(p, key); /* key_t */
1703 uarg[1] = SCARG(p, size); /* size_t */
1704 iarg[2] = SCARG(p, shmflg); /* int */
1710 const struct compat_50_sys_clock_gettime_args *p = params;
1711 iarg[0] = SCARG(p, clock_id); /* clockid_t */
1712 uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec50 * */
1718 const struct compat_50_sys_clock_settime_args *p = params;
1719 iarg[0] = SCARG(p, clock_id); /* clockid_t */
1720 uarg[1] = (intptr_t) SCARG(p, tp); /* const struct timespec50 * */
1726 const struct compat_50_sys_clock_getres_args *p = params;
1727 iarg[0] = SCARG(p, clock_id); /* clockid_t */
1728 uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec50 * */
1734 const struct sys_timer_create_args *p = params;
1735 iarg[0] = SCARG(p, clock_id); /* clockid_t */
1736 uarg[1] = (intptr_t) SCARG(p, evp); /* struct sigevent * */
1737 uarg[2] = (intptr_t) SCARG(p, timerid); /* timer_t * */
1743 const struct sys_timer_delete_args *p = params;
1744 iarg[0] = SCARG(p, timerid); /* timer_t */
1750 const struct compat_50_sys_timer_settime_args *p = params;
1751 iarg[0] = SCARG(p, timerid); /* timer_t */
1752 iarg[1] = SCARG(p, flags); /* int */
1753 uarg[2] = (intptr_t) SCARG(p, value); /* const struct itimerspec50 * */
1754 uarg[3] = (intptr_t) SCARG(p, ovalue); /* struct itimerspec50 * */
1760 const struct compat_50_sys_timer_gettime_args *p = params;
1761 iarg[0] = SCARG(p, timerid); /* timer_t */
1762 uarg[1] = (intptr_t) SCARG(p, value); /* struct itimerspec50 * */
1768 const struct sys_timer_getoverrun_args *p = params;
1769 iarg[0] = SCARG(p, timerid); /* timer_t */
1775 const struct compat_50_sys_nanosleep_args *p = params;
1776 uarg[0] = (intptr_t) SCARG(p, rqtp); /* const struct timespec50 * */
1777 uarg[1] = (intptr_t) SCARG(p, rmtp); /* struct timespec50 * */
1783 const struct sys_fdatasync_args *p = params;
1784 iarg[0] = SCARG(p, fd); /* int */
1790 const struct sys_mlockall_args *p = params;
1791 iarg[0] = SCARG(p, flags); /* int */
1802 const struct compat_50_sys___sigtimedwait_args *p = params;
1803 uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */
1804 uarg[1] = (intptr_t) SCARG(p, info); /* siginfo_t * */
1805 uarg[2] = (intptr_t) SCARG(p, timeout); /* struct timespec50 * */
1811 const struct sys_sigqueueinfo_args *p = params;
1812 iarg[0] = SCARG(p, pid); /* pid_t */
1813 uarg[1] = (intptr_t) SCARG(p, info); /* const siginfo_t * */
1819 const struct sys_modctl_args *p = params;
1820 iarg[0] = SCARG(p, cmd); /* int */
1821 uarg[1] = (intptr_t) SCARG(p, arg); /* void * */
1827 const struct sys__ksem_init_args *p = params;
1828 uarg[0] = SCARG(p, value); /* unsigned int */
1829 uarg[1] = (intptr_t) SCARG(p, idp); /* intptr_t * */
1835 const struct sys__ksem_open_args *p = params;
1836 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1837 iarg[1] = SCARG(p, oflag); /* int */
1838 iarg[2] = SCARG(p, mode); /* mode_t */
1839 uarg[3] = SCARG(p, value); /* unsigned int */
1840 uarg[4] = (intptr_t) SCARG(p, idp); /* intptr_t * */
1846 const struct sys__ksem_unlink_args *p = params;
1847 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1853 const struct sys__ksem_close_args *p = params;
1854 iarg[0] = SCARG(p, id); /* intptr_t */
1860 const struct sys__ksem_post_args *p = params;
1861 iarg[0] = SCARG(p, id); /* intptr_t */
1867 const struct sys__ksem_wait_args *p = params;
1868 iarg[0] = SCARG(p, id); /* intptr_t */
1874 const struct sys__ksem_trywait_args *p = params;
1875 iarg[0] = SCARG(p, id); /* intptr_t */
1881 const struct sys__ksem_getvalue_args *p = params;
1882 iarg[0] = SCARG(p, id); /* intptr_t */
1883 uarg[1] = (intptr_t) SCARG(p, value); /* unsigned int * */
1889 const struct sys__ksem_destroy_args *p = params;
1890 iarg[0] = SCARG(p, id); /* intptr_t */
1896 const struct sys__ksem_timedwait_args *p = params;
1897 iarg[0] = SCARG(p, id); /* intptr_t */
1898 uarg[1] = (intptr_t) SCARG(p, abstime); /* const struct timespec * */
1904 const struct sys_mq_open_args *p = params;
1905 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1906 iarg[1] = SCARG(p, oflag); /* int */
1907 iarg[2] = SCARG(p, mode); /* mode_t */
1908 uarg[3] = (intptr_t) SCARG(p, attr); /* struct mq_attr * */
1914 const struct sys_mq_close_args *p = params;
1915 iarg[0] = SCARG(p, mqdes); /* mqd_t */
1921 const struct sys_mq_unlink_args *p = params;
1922 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
1928 const struct sys_mq_getattr_args *p = params;
1929 iarg[0] = SCARG(p, mqdes); /* mqd_t */
1930 uarg[1] = (intptr_t) SCARG(p, mqstat); /* struct mq_attr * */
1936 const struct sys_mq_setattr_args *p = params;
1937 iarg[0] = SCARG(p, mqdes); /* mqd_t */
1938 uarg[1] = (intptr_t) SCARG(p, mqstat); /* const struct mq_attr * */
1939 uarg[2] = (intptr_t) SCARG(p, omqstat); /* struct mq_attr * */
1945 const struct sys_mq_notify_args *p = params;
1946 iarg[0] = SCARG(p, mqdes); /* mqd_t */
1947 uarg[1] = (intptr_t) SCARG(p, notification); /* const struct sigevent * */
1953 const struct sys_mq_send_args *p = params;
1954 iarg[0] = SCARG(p, mqdes); /* mqd_t */
1955 uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */
1956 uarg[2] = SCARG(p, msg_len); /* size_t */
1957 uarg[3] = SCARG(p, msg_prio); /* unsigned */
1963 const struct sys_mq_receive_args *p = params;
1964 iarg[0] = SCARG(p, mqdes); /* mqd_t */
1965 uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */
1966 uarg[2] = SCARG(p, msg_len); /* size_t */
1967 uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */
1973 const struct compat_50_sys_mq_timedsend_args *p = params;
1974 iarg[0] = SCARG(p, mqdes); /* mqd_t */
1975 uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */
1976 uarg[2] = SCARG(p, msg_len); /* size_t */
1977 uarg[3] = SCARG(p, msg_prio); /* unsigned */
1978 uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec50 * */
1984 const struct compat_50_sys_mq_timedreceive_args *p = params;
1985 iarg[0] = SCARG(p, mqdes); /* mqd_t */
1986 uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */
1987 uarg[2] = SCARG(p, msg_len); /* size_t */
1988 uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */
1989 uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec50 * */
1995 const struct sys_eventfd_args *p = params;
1996 uarg[0] = SCARG(p, val); /* unsigned int */
1997 iarg[1] = SCARG(p, flags); /* int */
2003 const struct sys___posix_rename_args *p = params;
2004 uarg[0] = (intptr_t) SCARG(p, from); /* const char * */
2005 uarg[1] = (intptr_t) SCARG(p, to); /* const char * */
2011 const struct sys_swapctl_args *p = params;
2012 iarg[0] = SCARG(p, cmd); /* int */
2013 uarg[1] = (intptr_t) SCARG(p, arg); /* void * */
2014 iarg[2] = SCARG(p, misc); /* int */
2020 const struct compat_30_sys_getdents_args *p = params;
2021 iarg[0] = SCARG(p, fd); /* int */
2022 uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
2023 uarg[2] = SCARG(p, count); /* size_t */
2029 const struct sys_minherit_args *p = params;
2030 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
2031 uarg[1] = SCARG(p, len); /* size_t */
2032 iarg[2] = SCARG(p, inherit); /* int */
2038 const struct sys_lchmod_args *p = params;
2039 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2040 iarg[1] = SCARG(p, mode); /* mode_t */
2046 const struct sys_lchown_args *p = params;
2047 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2048 uarg[1] = SCARG(p, uid); /* uid_t */
2049 iarg[2] = SCARG(p, gid); /* gid_t */
2055 const struct compat_50_sys_lutimes_args *p = params;
2056 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2057 uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval50 * */
2063 const struct sys___msync13_args *p = params;
2064 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
2065 uarg[1] = SCARG(p, len); /* size_t */
2066 iarg[2] = SCARG(p, flags); /* int */
2072 const struct compat_30_sys___stat13_args *p = params;
2073 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2074 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat13 * */
2080 const struct compat_30_sys___fstat13_args *p = params;
2081 iarg[0] = SCARG(p, fd); /* int */
2082 uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat13 * */
2088 const struct compat_30_sys___lstat13_args *p = params;
2089 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2090 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat13 * */
2096 const struct sys___sigaltstack14_args *p = params;
2097 uarg[0] = (intptr_t) SCARG(p, nss); /* const stack_t * */
2098 uarg[1] = (intptr_t) SCARG(p, oss); /* stack_t * */
2109 const struct sys___posix_chown_args *p = params;
2110 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2111 uarg[1] = SCARG(p, uid); /* uid_t */
2112 iarg[2] = SCARG(p, gid); /* gid_t */
2118 const struct sys___posix_fchown_args *p = params;
2119 iarg[0] = SCARG(p, fd); /* int */
2120 uarg[1] = SCARG(p, uid); /* uid_t */
2121 iarg[2] = SCARG(p, gid); /* gid_t */
2127 const struct sys___posix_lchown_args *p = params;
2128 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2129 uarg[1] = SCARG(p, uid); /* uid_t */
2130 iarg[2] = SCARG(p, gid); /* gid_t */
2136 const struct sys_getsid_args *p = params;
2137 iarg[0] = SCARG(p, pid); /* pid_t */
2143 const struct sys___clone_args *p = params;
2144 iarg[0] = SCARG(p, flags); /* int */
2145 uarg[1] = (intptr_t) SCARG(p, stack); /* void * */
2151 const struct sys_fktrace_args *p = params;
2152 iarg[0] = SCARG(p, fd); /* int */
2153 iarg[1] = SCARG(p, ops); /* int */
2154 iarg[2] = SCARG(p, facs); /* int */
2155 iarg[3] = SCARG(p, pid); /* pid_t */
2161 const struct sys_preadv_args *p = params;
2162 iarg[0] = SCARG(p, fd); /* int */
2163 uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
2164 iarg[2] = SCARG(p, iovcnt); /* int */
2165 iarg[3] = SCARG(p, PAD); /* int */
2166 iarg[4] = SCARG(p, offset); /* off_t */
2172 const struct sys_pwritev_args *p = params;
2173 iarg[0] = SCARG(p, fd); /* int */
2174 uarg[1] = (intptr_t) SCARG(p, iovp); /* const struct iovec * */
2175 iarg[2] = SCARG(p, iovcnt); /* int */
2176 iarg[3] = SCARG(p, PAD); /* int */
2177 iarg[4] = SCARG(p, offset); /* off_t */
2183 const struct compat_16_sys___sigaction14_args *p = params;
2184 iarg[0] = SCARG(p, signum); /* int */
2185 uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction * */
2186 uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction * */
2192 const struct sys___sigpending14_args *p = params;
2193 uarg[0] = (intptr_t) SCARG(p, set); /* sigset_t * */
2199 const struct sys___sigprocmask14_args *p = params;
2200 iarg[0] = SCARG(p, how); /* int */
2201 uarg[1] = (intptr_t) SCARG(p, set); /* const sigset_t * */
2202 uarg[2] = (intptr_t) SCARG(p, oset); /* sigset_t * */
2208 const struct sys___sigsuspend14_args *p = params;
2209 uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */
2215 const struct compat_16_sys___sigreturn14_args *p = params;
2216 uarg[0] = (intptr_t) SCARG(p, sigcntxp); /* struct sigcontext * */
2222 const struct sys___getcwd_args *p = params;
2223 uarg[0] = (intptr_t) SCARG(p, bufp); /* char * */
2224 uarg[1] = SCARG(p, length); /* size_t */
2230 const struct sys_fchroot_args *p = params;
2231 iarg[0] = SCARG(p, fd); /* int */
2237 const struct compat_30_sys_fhopen_args *p = params;
2238 uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2239 iarg[1] = SCARG(p, flags); /* int */
2245 const struct compat_30_sys_fhstat_args *p = params;
2246 uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2247 uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat13 * */
2253 const struct compat_20_sys_fhstatfs_args *p = params;
2254 uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2255 uarg[1] = (intptr_t) SCARG(p, buf); /* struct statfs12 * */
2261 const struct compat_50_sys_____semctl13_args *p = params;
2262 iarg[0] = SCARG(p, semid); /* int */
2263 iarg[1] = SCARG(p, semnum); /* int */
2264 iarg[2] = SCARG(p, cmd); /* int */
2265 uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */
2271 const struct compat_50_sys___msgctl13_args *p = params;
2272 iarg[0] = SCARG(p, msqid); /* int */
2273 iarg[1] = SCARG(p, cmd); /* int */
2274 uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds * */
2280 const struct compat_50_sys___shmctl13_args *p = params;
2281 iarg[0] = SCARG(p, shmid); /* int */
2282 iarg[1] = SCARG(p, cmd); /* int */
2283 uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds13 * */
2289 const struct sys_lchflags_args *p = params;
2290 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2291 uarg[1] = SCARG(p, flags); /* u_long */
2302 const struct sys_utrace_args *p = params;
2303 uarg[0] = (intptr_t) SCARG(p, label); /* const char * */
2304 uarg[1] = (intptr_t) SCARG(p, addr); /* void * */
2305 uarg[2] = SCARG(p, len); /* size_t */
2311 const struct sys_getcontext_args *p = params;
2312 uarg[0] = (intptr_t) SCARG(p, ucp); /* struct __ucontext * */
2318 const struct sys_setcontext_args *p = params;
2319 uarg[0] = (intptr_t) SCARG(p, ucp); /* const struct __ucontext * */
2325 const struct sys__lwp_create_args *p = params;
2326 uarg[0] = (intptr_t) SCARG(p, ucp); /* const struct __ucontext * */
2327 uarg[1] = SCARG(p, flags); /* u_long */
2328 uarg[2] = (intptr_t) SCARG(p, new_lwp); /* lwpid_t * */
2344 const struct sys__lwp_wait_args *p = params;
2345 iarg[0] = SCARG(p, wait_for); /* lwpid_t */
2346 uarg[1] = (intptr_t) SCARG(p, departed); /* lwpid_t * */
2352 const struct sys__lwp_suspend_args *p = params;
2353 iarg[0] = SCARG(p, target); /* lwpid_t */
2359 const struct sys__lwp_continue_args *p = params;
2360 iarg[0] = SCARG(p, target); /* lwpid_t */
2366 const struct sys__lwp_wakeup_args *p = params;
2367 iarg[0] = SCARG(p, target); /* lwpid_t */
2378 const struct sys__lwp_setprivate_args *p = params;
2379 uarg[0] = (intptr_t) SCARG(p, ptr); /* void * */
2385 const struct sys__lwp_kill_args *p = params;
2386 iarg[0] = SCARG(p, target); /* lwpid_t */
2387 iarg[1] = SCARG(p, signo); /* int */
2393 const struct sys__lwp_detach_args *p = params;
2394 iarg[0] = SCARG(p, target); /* lwpid_t */
2400 const struct compat_50_sys__lwp_park_args *p = params;
2401 uarg[0] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */
2402 iarg[1] = SCARG(p, unpark); /* lwpid_t */
2403 uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */
2404 uarg[3] = (intptr_t) SCARG(p, unparkhint); /* const void * */
2410 const struct sys__lwp_unpark_args *p = params;
2411 iarg[0] = SCARG(p, target); /* lwpid_t */
2412 uarg[1] = (intptr_t) SCARG(p, hint); /* const void * */
2418 const struct sys__lwp_unpark_all_args *p = params;
2419 uarg[0] = (intptr_t) SCARG(p, targets); /* const lwpid_t * */
2420 uarg[1] = SCARG(p, ntargets); /* size_t */
2421 uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */
2427 const struct sys__lwp_setname_args *p = params;
2428 iarg[0] = SCARG(p, target); /* lwpid_t */
2429 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2435 const struct sys__lwp_getname_args *p = params;
2436 iarg[0] = SCARG(p, target); /* lwpid_t */
2437 uarg[1] = (intptr_t) SCARG(p, name); /* char * */
2438 uarg[2] = SCARG(p, len); /* size_t */
2444 const struct sys__lwp_ctl_args *p = params;
2445 iarg[0] = SCARG(p, features); /* int */
2446 uarg[1] = (intptr_t) SCARG(p, address); /* struct lwpctl ** */
2452 const struct compat_60_sys_sa_register_args *p = params;
2453 uarg[0] = (intptr_t) SCARG(p, newv); /* void * */
2454 uarg[1] = (intptr_t) SCARG(p, oldv); /* void ** */
2455 iarg[2] = SCARG(p, flags); /* int */
2456 iarg[3] = SCARG(p, stackinfo_offset); /* ssize_t */
2462 const struct compat_60_sys_sa_stacks_args *p = params;
2463 iarg[0] = SCARG(p, num); /* int */
2464 uarg[1] = (intptr_t) SCARG(p, stacks); /* stack_t * */
2475 const struct compat_60_sys_sa_setconcurrency_args *p = params;
2476 iarg[0] = SCARG(p, concurrency); /* int */
2487 const struct compat_60_sys_sa_preempt_args *p = params;
2488 iarg[0] = SCARG(p, sa_id); /* int */
2494 const struct sys___sigaction_sigtramp_args *p = params;
2495 iarg[0] = SCARG(p, signum); /* int */
2496 uarg[1] = (intptr_t) SCARG(p, nsa); /* const struct sigaction * */
2497 uarg[2] = (intptr_t) SCARG(p, osa); /* struct sigaction * */
2498 uarg[3] = (intptr_t) SCARG(p, tramp); /* const void * */
2499 iarg[4] = SCARG(p, vers); /* int */
2505 const struct sys_rasctl_args *p = params;
2506 uarg[0] = (intptr_t) SCARG(p, addr); /* void * */
2507 uarg[1] = SCARG(p, len); /* size_t */
2508 iarg[2] = SCARG(p, op); /* int */
2519 const struct compat_50_sys_kevent_args *p = params;
2520 iarg[0] = SCARG(p, fd); /* int */
2521 uarg[1] = (intptr_t) SCARG(p, changelist); /* const struct kevent100 * */
2522 uarg[2] = SCARG(p, nchanges); /* size_t */
2523 uarg[3] = (intptr_t) SCARG(p, eventlist); /* struct kevent100 * */
2524 uarg[4] = SCARG(p, nevents); /* size_t */
2525 uarg[5] = (intptr_t) SCARG(p, timeout); /* const struct timespec50 * */
2531 const struct sys__sched_setparam_args *p = params;
2532 iarg[0] = SCARG(p, pid); /* pid_t */
2533 iarg[1] = SCARG(p, lid); /* lwpid_t */
2534 iarg[2] = SCARG(p, policy); /* int */
2535 uarg[3] = (intptr_t) SCARG(p, params); /* const struct sched_param * */
2541 const struct sys__sched_getparam_args *p = params;
2542 iarg[0] = SCARG(p, pid); /* pid_t */
2543 iarg[1] = SCARG(p, lid); /* lwpid_t */
2544 uarg[2] = (intptr_t) SCARG(p, policy); /* int * */
2545 uarg[3] = (intptr_t) SCARG(p, params); /* struct sched_param * */
2551 const struct sys__sched_setaffinity_args *p = params;
2552 iarg[0] = SCARG(p, pid); /* pid_t */
2553 iarg[1] = SCARG(p, lid); /* lwpid_t */
2554 uarg[2] = SCARG(p, size); /* size_t */
2555 uarg[3] = (intptr_t) SCARG(p, cpuset); /* const cpuset_t * */
2561 const struct sys__sched_getaffinity_args *p = params;
2562 iarg[0] = SCARG(p, pid); /* pid_t */
2563 iarg[1] = SCARG(p, lid); /* lwpid_t */
2564 uarg[2] = SCARG(p, size); /* size_t */
2565 uarg[3] = (intptr_t) SCARG(p, cpuset); /* cpuset_t * */
2576 const struct sys__sched_protect_args *p = params;
2577 iarg[0] = SCARG(p, priority); /* int */
2583 const struct sys_fsync_range_args *p = params;
2584 iarg[0] = SCARG(p, fd); /* int */
2585 iarg[1] = SCARG(p, flags); /* int */
2586 iarg[2] = SCARG(p, start); /* off_t */
2587 iarg[3] = SCARG(p, length); /* off_t */
2593 const struct sys_uuidgen_args *p = params;
2594 uarg[0] = (intptr_t) SCARG(p, store); /* struct uuid * */
2595 iarg[1] = SCARG(p, count); /* int */
2601 const struct compat_90_sys_getvfsstat_args *p = params;
2602 uarg[0] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */
2603 uarg[1] = SCARG(p, bufsize); /* size_t */
2604 iarg[2] = SCARG(p, flags); /* int */
2610 const struct compat_90_sys_statvfs1_args *p = params;
2611 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2612 uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */
2613 iarg[2] = SCARG(p, flags); /* int */
2619 const struct compat_90_sys_fstatvfs1_args *p = params;
2620 iarg[0] = SCARG(p, fd); /* int */
2621 uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */
2622 iarg[2] = SCARG(p, flags); /* int */
2628 const struct compat_30_sys_fhstatvfs1_args *p = params;
2629 uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2630 uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */
2631 iarg[2] = SCARG(p, flags); /* int */
2637 const struct sys_extattrctl_args *p = params;
2638 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2639 iarg[1] = SCARG(p, cmd); /* int */
2640 uarg[2] = (intptr_t) SCARG(p, filename); /* const char * */
2641 iarg[3] = SCARG(p, attrnamespace); /* int */
2642 uarg[4] = (intptr_t) SCARG(p, attrname); /* const char * */
2648 const struct sys_extattr_set_file_args *p = params;
2649 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2650 iarg[1] = SCARG(p, attrnamespace); /* int */
2651 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2652 uarg[3] = (intptr_t) SCARG(p, data); /* const void * */
2653 uarg[4] = SCARG(p, nbytes); /* size_t */
2659 const struct sys_extattr_get_file_args *p = params;
2660 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2661 iarg[1] = SCARG(p, attrnamespace); /* int */
2662 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2663 uarg[3] = (intptr_t) SCARG(p, data); /* void * */
2664 uarg[4] = SCARG(p, nbytes); /* size_t */
2670 const struct sys_extattr_delete_file_args *p = params;
2671 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2672 iarg[1] = SCARG(p, attrnamespace); /* int */
2673 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2679 const struct sys_extattr_set_fd_args *p = params;
2680 iarg[0] = SCARG(p, fd); /* int */
2681 iarg[1] = SCARG(p, attrnamespace); /* int */
2682 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2683 uarg[3] = (intptr_t) SCARG(p, data); /* const void * */
2684 uarg[4] = SCARG(p, nbytes); /* size_t */
2690 const struct sys_extattr_get_fd_args *p = params;
2691 iarg[0] = SCARG(p, fd); /* int */
2692 iarg[1] = SCARG(p, attrnamespace); /* int */
2693 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2694 uarg[3] = (intptr_t) SCARG(p, data); /* void * */
2695 uarg[4] = SCARG(p, nbytes); /* size_t */
2701 const struct sys_extattr_delete_fd_args *p = params;
2702 iarg[0] = SCARG(p, fd); /* int */
2703 iarg[1] = SCARG(p, attrnamespace); /* int */
2704 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2710 const struct sys_extattr_set_link_args *p = params;
2711 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2712 iarg[1] = SCARG(p, attrnamespace); /* int */
2713 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2714 uarg[3] = (intptr_t) SCARG(p, data); /* const void * */
2715 uarg[4] = SCARG(p, nbytes); /* size_t */
2721 const struct sys_extattr_get_link_args *p = params;
2722 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2723 iarg[1] = SCARG(p, attrnamespace); /* int */
2724 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2725 uarg[3] = (intptr_t) SCARG(p, data); /* void * */
2726 uarg[4] = SCARG(p, nbytes); /* size_t */
2732 const struct sys_extattr_delete_link_args *p = params;
2733 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2734 iarg[1] = SCARG(p, attrnamespace); /* int */
2735 uarg[2] = (intptr_t) SCARG(p, attrname); /* const char * */
2741 const struct sys_extattr_list_fd_args *p = params;
2742 iarg[0] = SCARG(p, fd); /* int */
2743 iarg[1] = SCARG(p, attrnamespace); /* int */
2744 uarg[2] = (intptr_t) SCARG(p, data); /* void * */
2745 uarg[3] = SCARG(p, nbytes); /* size_t */
2751 const struct sys_extattr_list_file_args *p = params;
2752 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2753 iarg[1] = SCARG(p, attrnamespace); /* int */
2754 uarg[2] = (intptr_t) SCARG(p, data); /* void * */
2755 uarg[3] = SCARG(p, nbytes); /* size_t */
2761 const struct sys_extattr_list_link_args *p = params;
2762 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2763 iarg[1] = SCARG(p, attrnamespace); /* int */
2764 uarg[2] = (intptr_t) SCARG(p, data); /* void * */
2765 uarg[3] = SCARG(p, nbytes); /* size_t */
2771 const struct compat_50_sys_pselect_args *p = params;
2772 iarg[0] = SCARG(p, nd); /* int */
2773 uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */
2774 uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */
2775 uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */
2776 uarg[4] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */
2777 uarg[5] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
2783 const struct compat_50_sys_pollts_args *p = params;
2784 uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */
2785 uarg[1] = SCARG(p, nfds); /* u_int */
2786 uarg[2] = (intptr_t) SCARG(p, ts); /* const struct timespec50 * */
2787 uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
2793 const struct sys_setxattr_args *p = params;
2794 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2795 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2796 uarg[2] = (intptr_t) SCARG(p, value); /* const void * */
2797 uarg[3] = SCARG(p, size); /* size_t */
2798 iarg[4] = SCARG(p, flags); /* int */
2804 const struct sys_lsetxattr_args *p = params;
2805 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2806 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2807 uarg[2] = (intptr_t) SCARG(p, value); /* const void * */
2808 uarg[3] = SCARG(p, size); /* size_t */
2809 iarg[4] = SCARG(p, flags); /* int */
2815 const struct sys_fsetxattr_args *p = params;
2816 iarg[0] = SCARG(p, fd); /* int */
2817 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2818 uarg[2] = (intptr_t) SCARG(p, value); /* const void * */
2819 uarg[3] = SCARG(p, size); /* size_t */
2820 iarg[4] = SCARG(p, flags); /* int */
2826 const struct sys_getxattr_args *p = params;
2827 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2828 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2829 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
2830 uarg[3] = SCARG(p, size); /* size_t */
2836 const struct sys_lgetxattr_args *p = params;
2837 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2838 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2839 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
2840 uarg[3] = SCARG(p, size); /* size_t */
2846 const struct sys_fgetxattr_args *p = params;
2847 iarg[0] = SCARG(p, fd); /* int */
2848 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2849 uarg[2] = (intptr_t) SCARG(p, value); /* void * */
2850 uarg[3] = SCARG(p, size); /* size_t */
2856 const struct sys_listxattr_args *p = params;
2857 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2858 uarg[1] = (intptr_t) SCARG(p, list); /* char * */
2859 uarg[2] = SCARG(p, size); /* size_t */
2865 const struct sys_llistxattr_args *p = params;
2866 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2867 uarg[1] = (intptr_t) SCARG(p, list); /* char * */
2868 uarg[2] = SCARG(p, size); /* size_t */
2874 const struct sys_flistxattr_args *p = params;
2875 iarg[0] = SCARG(p, fd); /* int */
2876 uarg[1] = (intptr_t) SCARG(p, list); /* char * */
2877 uarg[2] = SCARG(p, size); /* size_t */
2883 const struct sys_removexattr_args *p = params;
2884 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2885 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2891 const struct sys_lremovexattr_args *p = params;
2892 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2893 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2899 const struct sys_fremovexattr_args *p = params;
2900 iarg[0] = SCARG(p, fd); /* int */
2901 uarg[1] = (intptr_t) SCARG(p, name); /* const char * */
2907 const struct compat_50_sys___stat30_args *p = params;
2908 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2909 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat30 * */
2915 const struct compat_50_sys___fstat30_args *p = params;
2916 iarg[0] = SCARG(p, fd); /* int */
2917 uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat30 * */
2923 const struct compat_50_sys___lstat30_args *p = params;
2924 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
2925 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat30 * */
2931 const struct sys___getdents30_args *p = params;
2932 iarg[0] = SCARG(p, fd); /* int */
2933 uarg[1] = (intptr_t) SCARG(p, buf); /* char * */
2934 uarg[2] = SCARG(p, count); /* size_t */
2940 const struct compat_30_sys___fhstat30_args *p = params;
2941 uarg[0] = (intptr_t) SCARG(p, fhp); /* const struct compat_30_fhandle * */
2942 uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat30 * */
2948 const struct compat_50_sys___ntp_gettime30_args *p = params;
2949 uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval50 * */
2955 const struct sys___socket30_args *p = params;
2956 iarg[0] = SCARG(p, domain); /* int */
2957 iarg[1] = SCARG(p, type); /* int */
2958 iarg[2] = SCARG(p, protocol); /* int */
2964 const struct sys___getfh30_args *p = params;
2965 uarg[0] = (intptr_t) SCARG(p, fname); /* const char * */
2966 uarg[1] = (intptr_t) SCARG(p, fhp); /* void * */
2967 uarg[2] = (intptr_t) SCARG(p, fh_size); /* size_t * */
2973 const struct sys___fhopen40_args *p = params;
2974 uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
2975 uarg[1] = SCARG(p, fh_size); /* size_t */
2976 iarg[2] = SCARG(p, flags); /* int */
2982 const struct compat_90_sys_fhstatvfs1_args *p = params;
2983 uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
2984 uarg[1] = SCARG(p, fh_size); /* size_t */
2985 uarg[2] = (intptr_t) SCARG(p, buf); /* struct statvfs90 * */
2986 iarg[3] = SCARG(p, flags); /* int */
2992 const struct compat_50_sys___fhstat40_args *p = params;
2993 uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
2994 uarg[1] = SCARG(p, fh_size); /* size_t */
2995 uarg[2] = (intptr_t) SCARG(p, sb); /* struct stat30 * */
3001 const struct sys_aio_cancel_args *p = params;
3002 iarg[0] = SCARG(p, fildes); /* int */
3003 uarg[1] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
3009 const struct sys_aio_error_args *p = params;
3010 uarg[0] = (intptr_t) SCARG(p, aiocbp); /* const struct aiocb * */
3016 const struct sys_aio_fsync_args *p = params;
3017 iarg[0] = SCARG(p, op); /* int */
3018 uarg[1] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
3024 const struct sys_aio_read_args *p = params;
3025 uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
3031 const struct sys_aio_return_args *p = params;
3032 uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
3038 const struct compat_50_sys_aio_suspend_args *p = params;
3039 uarg[0] = (intptr_t) SCARG(p, list); /* const struct aiocb *const * */
3040 iarg[1] = SCARG(p, nent); /* int */
3041 uarg[2] = (intptr_t) SCARG(p, timeout); /* const struct timespec50 * */
3047 const struct sys_aio_write_args *p = params;
3048 uarg[0] = (intptr_t) SCARG(p, aiocbp); /* struct aiocb * */
3054 const struct sys_lio_listio_args *p = params;
3055 iarg[0] = SCARG(p, mode); /* int */
3056 uarg[1] = (intptr_t) SCARG(p, list); /* struct aiocb *const * */
3057 iarg[2] = SCARG(p, nent); /* int */
3058 uarg[3] = (intptr_t) SCARG(p, sig); /* struct sigevent * */
3064 const struct sys___mount50_args *p = params;
3065 uarg[0] = (intptr_t) SCARG(p, type); /* const char * */
3066 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3067 iarg[2] = SCARG(p, flags); /* int */
3068 uarg[3] = (intptr_t) SCARG(p, data); /* void * */
3069 uarg[4] = SCARG(p, data_len); /* size_t */
3075 const struct sys_mremap_args *p = params;
3076 uarg[0] = (intptr_t) SCARG(p, old_address); /* void * */
3077 uarg[1] = SCARG(p, old_size); /* size_t */
3078 uarg[2] = (intptr_t) SCARG(p, new_address); /* void * */
3079 uarg[3] = SCARG(p, new_size); /* size_t */
3080 iarg[4] = SCARG(p, flags); /* int */
3086 const struct sys_pset_create_args *p = params;
3087 uarg[0] = (intptr_t) SCARG(p, psid); /* psetid_t * */
3093 const struct sys_pset_destroy_args *p = params;
3094 iarg[0] = SCARG(p, psid); /* psetid_t */
3100 const struct sys_pset_assign_args *p = params;
3101 iarg[0] = SCARG(p, psid); /* psetid_t */
3102 iarg[1] = SCARG(p, cpuid); /* cpuid_t */
3103 uarg[2] = (intptr_t) SCARG(p, opsid); /* psetid_t * */
3109 const struct sys__pset_bind_args *p = params;
3110 iarg[0] = SCARG(p, idtype); /* idtype_t */
3111 iarg[1] = SCARG(p, first_id); /* id_t */
3112 iarg[2] = SCARG(p, second_id); /* id_t */
3113 iarg[3] = SCARG(p, psid); /* psetid_t */
3114 uarg[4] = (intptr_t) SCARG(p, opsid); /* psetid_t * */
3120 const struct sys___posix_fadvise50_args *p = params;
3121 iarg[0] = SCARG(p, fd); /* int */
3122 iarg[1] = SCARG(p, PAD); /* int */
3123 iarg[2] = SCARG(p, offset); /* off_t */
3124 iarg[3] = SCARG(p, len); /* off_t */
3125 iarg[4] = SCARG(p, advice); /* int */
3131 const struct sys___select50_args *p = params;
3132 iarg[0] = SCARG(p, nd); /* int */
3133 uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */
3134 uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */
3135 uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */
3136 uarg[4] = (intptr_t) SCARG(p, tv); /* struct timeval * */
3142 const struct sys___gettimeofday50_args *p = params;
3143 uarg[0] = (intptr_t) SCARG(p, tp); /* struct timeval * */
3144 uarg[1] = (intptr_t) SCARG(p, tzp); /* void * */
3150 const struct sys___settimeofday50_args *p = params;
3151 uarg[0] = (intptr_t) SCARG(p, tv); /* const struct timeval * */
3152 uarg[1] = (intptr_t) SCARG(p, tzp); /* const void * */
3158 const struct sys___utimes50_args *p = params;
3159 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3160 uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */
3166 const struct sys___adjtime50_args *p = params;
3167 uarg[0] = (intptr_t) SCARG(p, delta); /* const struct timeval * */
3168 uarg[1] = (intptr_t) SCARG(p, olddelta); /* struct timeval * */
3174 const struct sys___lfs_segwait50_args *p = params;
3175 uarg[0] = (intptr_t) SCARG(p, fsidp); /* fsid_t * */
3176 uarg[1] = (intptr_t) SCARG(p, tv); /* struct timeval * */
3182 const struct sys___futimes50_args *p = params;
3183 iarg[0] = SCARG(p, fd); /* int */
3184 uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */
3190 const struct sys___lutimes50_args *p = params;
3191 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3192 uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timeval * */
3198 const struct sys___setitimer50_args *p = params;
3199 iarg[0] = SCARG(p, which); /* int */
3200 uarg[1] = (intptr_t) SCARG(p, itv); /* const struct itimerval * */
3201 uarg[2] = (intptr_t) SCARG(p, oitv); /* struct itimerval * */
3207 const struct sys___getitimer50_args *p = params;
3208 iarg[0] = SCARG(p, which); /* int */
3209 uarg[1] = (intptr_t) SCARG(p, itv); /* struct itimerval * */
3215 const struct sys___clock_gettime50_args *p = params;
3216 iarg[0] = SCARG(p, clock_id); /* clockid_t */
3217 uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec * */
3223 const struct sys___clock_settime50_args *p = params;
3224 iarg[0] = SCARG(p, clock_id); /* clockid_t */
3225 uarg[1] = (intptr_t) SCARG(p, tp); /* const struct timespec * */
3231 const struct sys___clock_getres50_args *p = params;
3232 iarg[0] = SCARG(p, clock_id); /* clockid_t */
3233 uarg[1] = (intptr_t) SCARG(p, tp); /* struct timespec * */
3239 const struct sys___nanosleep50_args *p = params;
3240 uarg[0] = (intptr_t) SCARG(p, rqtp); /* const struct timespec * */
3241 uarg[1] = (intptr_t) SCARG(p, rmtp); /* struct timespec * */
3247 const struct sys_____sigtimedwait50_args *p = params;
3248 uarg[0] = (intptr_t) SCARG(p, set); /* const sigset_t * */
3249 uarg[1] = (intptr_t) SCARG(p, info); /* siginfo_t * */
3250 uarg[2] = (intptr_t) SCARG(p, timeout); /* struct timespec * */
3256 const struct sys___mq_timedsend50_args *p = params;
3257 iarg[0] = SCARG(p, mqdes); /* mqd_t */
3258 uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* const char * */
3259 uarg[2] = SCARG(p, msg_len); /* size_t */
3260 uarg[3] = SCARG(p, msg_prio); /* unsigned */
3261 uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec * */
3267 const struct sys___mq_timedreceive50_args *p = params;
3268 iarg[0] = SCARG(p, mqdes); /* mqd_t */
3269 uarg[1] = (intptr_t) SCARG(p, msg_ptr); /* char * */
3270 uarg[2] = SCARG(p, msg_len); /* size_t */
3271 uarg[3] = (intptr_t) SCARG(p, msg_prio); /* unsigned * */
3272 uarg[4] = (intptr_t) SCARG(p, abs_timeout); /* const struct timespec * */
3278 const struct compat_60_sys__lwp_park_args *p = params;
3279 uarg[0] = (intptr_t) SCARG(p, ts); /* const struct timespec * */
3280 iarg[1] = SCARG(p, unpark); /* lwpid_t */
3281 uarg[2] = (intptr_t) SCARG(p, hint); /* const void * */
3282 uarg[3] = (intptr_t) SCARG(p, unparkhint); /* const void * */
3288 const struct compat_100_sys___kevent50_args *p = params;
3289 iarg[0] = SCARG(p, fd); /* int */
3290 uarg[1] = (intptr_t) SCARG(p, changelist); /* const struct kevent100 * */
3291 uarg[2] = SCARG(p, nchanges); /* size_t */
3292 uarg[3] = (intptr_t) SCARG(p, eventlist); /* struct kevent100 * */
3293 uarg[4] = SCARG(p, nevents); /* size_t */
3294 uarg[5] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */
3300 const struct sys___pselect50_args *p = params;
3301 iarg[0] = SCARG(p, nd); /* int */
3302 uarg[1] = (intptr_t) SCARG(p, in); /* fd_set * */
3303 uarg[2] = (intptr_t) SCARG(p, ou); /* fd_set * */
3304 uarg[3] = (intptr_t) SCARG(p, ex); /* fd_set * */
3305 uarg[4] = (intptr_t) SCARG(p, ts); /* const struct timespec * */
3306 uarg[5] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
3312 const struct sys___pollts50_args *p = params;
3313 uarg[0] = (intptr_t) SCARG(p, fds); /* struct pollfd * */
3314 uarg[1] = SCARG(p, nfds); /* u_int */
3315 uarg[2] = (intptr_t) SCARG(p, ts); /* const struct timespec * */
3316 uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
3322 const struct sys___aio_suspend50_args *p = params;
3323 uarg[0] = (intptr_t) SCARG(p, list); /* const struct aiocb *const * */
3324 iarg[1] = SCARG(p, nent); /* int */
3325 uarg[2] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */
3331 const struct sys___stat50_args *p = params;
3332 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3333 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat * */
3339 const struct sys___fstat50_args *p = params;
3340 iarg[0] = SCARG(p, fd); /* int */
3341 uarg[1] = (intptr_t) SCARG(p, sb); /* struct stat * */
3347 const struct sys___lstat50_args *p = params;
3348 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3349 uarg[1] = (intptr_t) SCARG(p, ub); /* struct stat * */
3355 const struct sys_____semctl50_args *p = params;
3356 iarg[0] = SCARG(p, semid); /* int */
3357 iarg[1] = SCARG(p, semnum); /* int */
3358 iarg[2] = SCARG(p, cmd); /* int */
3359 uarg[3] = (intptr_t) SCARG(p, arg); /* union __semun * */
3365 const struct sys___shmctl50_args *p = params;
3366 iarg[0] = SCARG(p, shmid); /* int */
3367 iarg[1] = SCARG(p, cmd); /* int */
3368 uarg[2] = (intptr_t) SCARG(p, buf); /* struct shmid_ds * */
3374 const struct sys___msgctl50_args *p = params;
3375 iarg[0] = SCARG(p, msqid); /* int */
3376 iarg[1] = SCARG(p, cmd); /* int */
3377 uarg[2] = (intptr_t) SCARG(p, buf); /* struct msqid_ds * */
3383 const struct sys___getrusage50_args *p = params;
3384 iarg[0] = SCARG(p, who); /* int */
3385 uarg[1] = (intptr_t) SCARG(p, rusage); /* struct rusage * */
3391 const struct sys___timer_settime50_args *p = params;
3392 iarg[0] = SCARG(p, timerid); /* timer_t */
3393 iarg[1] = SCARG(p, flags); /* int */
3394 uarg[2] = (intptr_t) SCARG(p, value); /* const struct itimerspec * */
3395 uarg[3] = (intptr_t) SCARG(p, ovalue); /* struct itimerspec * */
3401 const struct sys___timer_gettime50_args *p = params;
3402 iarg[0] = SCARG(p, timerid); /* timer_t */
3403 uarg[1] = (intptr_t) SCARG(p, value); /* struct itimerspec * */
3410 const struct sys___ntp_gettime50_args *p = params;
3411 uarg[0] = (intptr_t) SCARG(p, ntvp); /* struct ntptimeval * */
3419 const struct sys___wait450_args *p = params;
3420 iarg[0] = SCARG(p, pid); /* pid_t */
3421 uarg[1] = (intptr_t) SCARG(p, status); /* int * */
3422 iarg[2] = SCARG(p, options); /* int */
3423 uarg[3] = (intptr_t) SCARG(p, rusage); /* struct rusage * */
3429 const struct sys___mknod50_args *p = params;
3430 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3431 iarg[1] = SCARG(p, mode); /* mode_t */
3432 iarg[2] = SCARG(p, dev); /* dev_t */
3438 const struct sys___fhstat50_args *p = params;
3439 uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
3440 uarg[1] = SCARG(p, fh_size); /* size_t */
3441 uarg[2] = (intptr_t) SCARG(p, sb); /* struct stat * */
3447 const struct sys_pipe2_args *p = params;
3448 uarg[0] = (intptr_t) SCARG(p, fildes); /* int * */
3449 iarg[1] = SCARG(p, flags); /* int */
3455 const struct compat_100_sys_dup3_args *p = params;
3456 iarg[0] = SCARG(p, from); /* int */
3457 iarg[1] = SCARG(p, to); /* int */
3458 iarg[2] = SCARG(p, flags); /* int */
3464 const struct sys_kqueue1_args *p = params;
3465 iarg[0] = SCARG(p, flags); /* int */
3471 const struct sys_paccept_args *p = params;
3472 iarg[0] = SCARG(p, s); /* int */
3473 uarg[1] = (intptr_t) SCARG(p, name); /* struct sockaddr * */
3474 uarg[2] = (intptr_t) SCARG(p, anamelen); /* socklen_t * */
3475 uarg[3] = (intptr_t) SCARG(p, mask); /* const sigset_t * */
3476 iarg[4] = SCARG(p, flags); /* int */
3482 const struct sys_linkat_args *p = params;
3483 iarg[0] = SCARG(p, fd1); /* int */
3484 uarg[1] = (intptr_t) SCARG(p, name1); /* const char * */
3485 iarg[2] = SCARG(p, fd2); /* int */
3486 uarg[3] = (intptr_t) SCARG(p, name2); /* const char * */
3487 iarg[4] = SCARG(p, flags); /* int */
3493 const struct sys_renameat_args *p = params;
3494 iarg[0] = SCARG(p, fromfd); /* int */
3495 uarg[1] = (intptr_t) SCARG(p, from); /* const char * */
3496 iarg[2] = SCARG(p, tofd); /* int */
3497 uarg[3] = (intptr_t) SCARG(p, to); /* const char * */
3503 const struct sys_mkfifoat_args *p = params;
3504 iarg[0] = SCARG(p, fd); /* int */
3505 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3506 iarg[2] = SCARG(p, mode); /* mode_t */
3512 const struct sys_mknodat_args *p = params;
3513 iarg[0] = SCARG(p, fd); /* int */
3514 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3515 iarg[2] = SCARG(p, mode); /* mode_t */
3516 iarg[3] = SCARG(p, PAD); /* int */
3517 iarg[4] = SCARG(p, dev); /* dev_t */
3523 const struct sys_mkdirat_args *p = params;
3524 iarg[0] = SCARG(p, fd); /* int */
3525 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3526 iarg[2] = SCARG(p, mode); /* mode_t */
3532 const struct sys_faccessat_args *p = params;
3533 iarg[0] = SCARG(p, fd); /* int */
3534 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3535 iarg[2] = SCARG(p, amode); /* int */
3536 iarg[3] = SCARG(p, flag); /* int */
3542 const struct sys_fchmodat_args *p = params;
3543 iarg[0] = SCARG(p, fd); /* int */
3544 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3545 iarg[2] = SCARG(p, mode); /* mode_t */
3546 iarg[3] = SCARG(p, flag); /* int */
3552 const struct sys_fchownat_args *p = params;
3553 iarg[0] = SCARG(p, fd); /* int */
3554 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3555 uarg[2] = SCARG(p, owner); /* uid_t */
3556 iarg[3] = SCARG(p, group); /* gid_t */
3557 iarg[4] = SCARG(p, flag); /* int */
3563 const struct sys_fexecve_args *p = params;
3564 iarg[0] = SCARG(p, fd); /* int */
3565 uarg[1] = (intptr_t) SCARG(p, argp); /* char *const * */
3566 uarg[2] = (intptr_t) SCARG(p, envp); /* char *const * */
3572 const struct sys_fstatat_args *p = params;
3573 iarg[0] = SCARG(p, fd); /* int */
3574 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3575 uarg[2] = (intptr_t) SCARG(p, buf); /* struct stat * */
3576 iarg[3] = SCARG(p, flag); /* int */
3582 const struct sys_utimensat_args *p = params;
3583 iarg[0] = SCARG(p, fd); /* int */
3584 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3585 uarg[2] = (intptr_t) SCARG(p, tptr); /* const struct timespec * */
3586 iarg[3] = SCARG(p, flag); /* int */
3592 const struct sys_openat_args *p = params;
3593 iarg[0] = SCARG(p, fd); /* int */
3594 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3595 iarg[2] = SCARG(p, oflags); /* int */
3596 iarg[3] = SCARG(p, mode); /* mode_t */
3602 const struct sys_readlinkat_args *p = params;
3603 iarg[0] = SCARG(p, fd); /* int */
3604 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3605 uarg[2] = (intptr_t) SCARG(p, buf); /* char * */
3606 uarg[3] = SCARG(p, bufsize); /* size_t */
3612 const struct sys_symlinkat_args *p = params;
3613 uarg[0] = (intptr_t) SCARG(p, path1); /* const char * */
3614 iarg[1] = SCARG(p, fd); /* int */
3615 uarg[2] = (intptr_t) SCARG(p, path2); /* const char * */
3621 const struct sys_unlinkat_args *p = params;
3622 iarg[0] = SCARG(p, fd); /* int */
3623 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3624 iarg[2] = SCARG(p, flag); /* int */
3630 const struct sys_futimens_args *p = params;
3631 iarg[0] = SCARG(p, fd); /* int */
3632 uarg[1] = (intptr_t) SCARG(p, tptr); /* const struct timespec * */
3638 const struct sys___quotactl_args *p = params;
3639 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3640 uarg[1] = (intptr_t) SCARG(p, args); /* struct quotactl_args * */
3646 const struct sys_posix_spawn_args *p = params;
3647 uarg[0] = (intptr_t) SCARG(p, pid); /* pid_t * */
3648 uarg[1] = (intptr_t) SCARG(p, path); /* const char * */
3649 uarg[2] = (intptr_t) SCARG(p, file_actions); /* const struct posix_spawn_file_actions * */
3650 uarg[3] = (intptr_t) SCARG(p, attrp); /* const struct posix_spawnattr * */
3651 uarg[4] = (intptr_t) SCARG(p, argv); /* char *const * */
3652 uarg[5] = (intptr_t) SCARG(p, envp); /* char *const * */
3658 const struct sys_recvmmsg_args *p = params;
3659 iarg[0] = SCARG(p, s); /* int */
3660 uarg[1] = (intptr_t) SCARG(p, mmsg); /* struct mmsghdr * */
3661 uarg[2] = SCARG(p, vlen); /* unsigned int */
3662 uarg[3] = SCARG(p, flags); /* unsigned int */
3663 uarg[4] = (intptr_t) SCARG(p, timeout); /* struct timespec * */
3669 const struct sys_sendmmsg_args *p = params;
3670 iarg[0] = SCARG(p, s); /* int */
3671 uarg[1] = (intptr_t) SCARG(p, mmsg); /* struct mmsghdr * */
3672 uarg[2] = SCARG(p, vlen); /* unsigned int */
3673 uarg[3] = SCARG(p, flags); /* unsigned int */
3679 const struct sys_clock_nanosleep_args *p = params;
3680 iarg[0] = SCARG(p, clock_id); /* clockid_t */
3681 iarg[1] = SCARG(p, flags); /* int */
3682 uarg[2] = (intptr_t) SCARG(p, rqtp); /* const struct timespec * */
3683 uarg[3] = (intptr_t) SCARG(p, rmtp); /* struct timespec * */
3689 const struct sys____lwp_park60_args *p = params;
3690 iarg[0] = SCARG(p, clock_id); /* clockid_t */
3691 iarg[1] = SCARG(p, flags); /* int */
3692 uarg[2] = (intptr_t) SCARG(p, ts); /* struct timespec * */
3693 iarg[3] = SCARG(p, unpark); /* lwpid_t */
3694 uarg[4] = (intptr_t) SCARG(p, hint); /* const void * */
3695 uarg[5] = (intptr_t) SCARG(p, unparkhint); /* const void * */
3701 const struct sys_posix_fallocate_args *p = params;
3702 iarg[0] = SCARG(p, fd); /* int */
3703 iarg[1] = SCARG(p, PAD); /* int */
3704 iarg[2] = SCARG(p, pos); /* off_t */
3705 iarg[3] = SCARG(p, len); /* off_t */
3711 const struct sys_fdiscard_args *p = params;
3712 iarg[0] = SCARG(p, fd); /* int */
3713 iarg[1] = SCARG(p, PAD); /* int */
3714 iarg[2] = SCARG(p, pos); /* off_t */
3715 iarg[3] = SCARG(p, len); /* off_t */
3721 const struct sys_wait6_args *p = params;
3722 iarg[0] = SCARG(p, idtype); /* idtype_t */
3723 iarg[1] = SCARG(p, id); /* id_t */
3724 uarg[2] = (intptr_t) SCARG(p, status); /* int * */
3725 iarg[3] = SCARG(p, options); /* int */
3726 uarg[4] = (intptr_t) SCARG(p, wru); /* struct wrusage * */
3727 uarg[5] = (intptr_t) SCARG(p, info); /* siginfo_t * */
3733 const struct sys_clock_getcpuclockid2_args *p = params;
3734 iarg[0] = SCARG(p, idtype); /* idtype_t */
3735 iarg[1] = SCARG(p, id); /* id_t */
3736 uarg[2] = (intptr_t) SCARG(p, clock_id); /* clockid_t * */
3742 const struct sys___getvfsstat90_args *p = params;
3743 uarg[0] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
3744 uarg[1] = SCARG(p, bufsize); /* size_t */
3745 iarg[2] = SCARG(p, flags); /* int */
3751 const struct sys___statvfs190_args *p = params;
3752 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3753 uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
3754 iarg[2] = SCARG(p, flags); /* int */
3760 const struct sys___fstatvfs190_args *p = params;
3761 iarg[0] = SCARG(p, fd); /* int */
3762 uarg[1] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
3763 iarg[2] = SCARG(p, flags); /* int */
3769 const struct sys___fhstatvfs190_args *p = params;
3770 uarg[0] = (intptr_t) SCARG(p, fhp); /* const void * */
3771 uarg[1] = SCARG(p, fh_size); /* size_t */
3772 uarg[2] = (intptr_t) SCARG(p, buf); /* struct statvfs * */
3773 iarg[3] = SCARG(p, flags); /* int */
3779 const struct sys___acl_get_link_args *p = params;
3780 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3781 iarg[1] = SCARG(p, type); /* acl_type_t */
3782 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3788 const struct sys___acl_set_link_args *p = params;
3789 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3790 iarg[1] = SCARG(p, type); /* acl_type_t */
3791 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3797 const struct sys___acl_delete_link_args *p = params;
3798 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3799 iarg[1] = SCARG(p, type); /* acl_type_t */
3805 const struct sys___acl_aclcheck_link_args *p = params;
3806 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3807 iarg[1] = SCARG(p, type); /* acl_type_t */
3808 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3814 const struct sys___acl_get_file_args *p = params;
3815 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3816 iarg[1] = SCARG(p, type); /* acl_type_t */
3817 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3823 const struct sys___acl_set_file_args *p = params;
3824 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3825 iarg[1] = SCARG(p, type); /* acl_type_t */
3826 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3832 const struct sys___acl_get_fd_args *p = params;
3833 iarg[0] = SCARG(p, filedes); /* int */
3834 iarg[1] = SCARG(p, type); /* acl_type_t */
3835 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3841 const struct sys___acl_set_fd_args *p = params;
3842 iarg[0] = SCARG(p, filedes); /* int */
3843 iarg[1] = SCARG(p, type); /* acl_type_t */
3844 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3850 const struct sys___acl_delete_file_args *p = params;
3851 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3852 iarg[1] = SCARG(p, type); /* acl_type_t */
3858 const struct sys___acl_delete_fd_args *p = params;
3859 iarg[0] = SCARG(p, filedes); /* int */
3860 iarg[1] = SCARG(p, type); /* acl_type_t */
3866 const struct sys___acl_aclcheck_file_args *p = params;
3867 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3868 iarg[1] = SCARG(p, type); /* acl_type_t */
3869 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3875 const struct sys___acl_aclcheck_fd_args *p = params;
3876 iarg[0] = SCARG(p, filedes); /* int */
3877 iarg[1] = SCARG(p, type); /* acl_type_t */
3878 uarg[2] = (intptr_t) SCARG(p, aclp); /* struct acl * */
3884 const struct sys_lpathconf_args *p = params;
3885 uarg[0] = (intptr_t) SCARG(p, path); /* const char * */
3886 iarg[1] = SCARG(p, name); /* int */
3892 const struct sys_memfd_create_args *p = params;
3893 uarg[0] = (intptr_t) SCARG(p, name); /* const char * */
3894 uarg[1] = SCARG(p, flags); /* unsigned int */
3900 const struct sys___kevent100_args *p = params;
3901 iarg[0] = SCARG(p, fd); /* int */
3902 uarg[1] = (intptr_t) SCARG(p, changelist); /* const struct kevent * */
3903 uarg[2] = SCARG(p, nchanges); /* size_t */
3904 uarg[3] = (intptr_t) SCARG(p, eventlist); /* struct kevent * */
3905 uarg[4] = SCARG(p, nevents); /* size_t */
3906 uarg[5] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */
3912 const struct sys_epoll_create1_args *p = params;
3913 iarg[0] = SCARG(p, flags); /* int */
3919 const struct sys_epoll_ctl_args *p = params;
3920 iarg[0] = SCARG(p, epfd); /* int */
3921 iarg[1] = SCARG(p, op); /* int */
3922 iarg[2] = SCARG(p, fd); /* int */
3923 uarg[3] = (intptr_t) SCARG(p, event); /* struct epoll_event * */
3929 const struct sys_epoll_pwait2_args *p = params;
3930 iarg[0] = SCARG(p, epfd); /* int */
3931 uarg[1] = (intptr_t) SCARG(p, events); /* struct epoll_event * */
3932 iarg[2] = SCARG(p, maxevents); /* int */
3933 uarg[3] = (intptr_t) SCARG(p, timeout); /* const struct timespec * */
3934 uarg[4] = (intptr_t) SCARG(p, sigmask); /* const sigset_t * */
3940 const struct sys___dup3100_args *p = params;
3941 iarg[0] = SCARG(p, from); /* int */
3942 iarg[1] = SCARG(p, to); /* int */
3943 iarg[2] = SCARG(p, flags); /* int */
3949 const struct sys_semtimedop_args *p = params;
3950 iarg[0] = SCARG(p, semid); /* int */
3951 uarg[1] = (intptr_t) SCARG(p, sops); /* struct sembuf * */
3952 uarg[2] = SCARG(p, nsops); /* size_t */
3953 uarg[3] = (intptr_t) SCARG(p, timeout); /* struct timespec * */
3965 const char *p = NULL;
3971 p = "int";
3974 p = "register_t";
3984 p = "int";
3997 p = "int";
4000 p = "void *";
4003 p = "size_t";
4013 p = "int";
4016 p = "const void *";
4019 p = "size_t";
4029 p = "const char *";
4032 p = "int";
4035 p = "mode_t";
4045 p = "int";
4055 p = "pid_t";
4058 p = "int *";
4061 p = "int";
4064 p = "struct rusage50 *";
4074 p = "const char *";
4077 p = "mode_t";
4087 p = "const char *";
4090 p = "const char *";
4100 p = "const char *";
4110 p = "const char *";
4120 p = "int";
4130 p = "const char *";
4133 p = "mode_t";
4136 p = "uint32_t";
4146 p = "const char *";
4149 p = "mode_t";
4159 p = "const char *";
4162 p = "uid_t";
4165 p = "gid_t";
4175 p = "char *";
4185 p = "struct statfs12 *";
4188 p = "long";
4191 p = "int";
4201 p = "int";
4204 p = "long";
4207 p = "int";
4220 p = "const char *";
4223 p = "const char *";
4226 p = "int";
4229 p = "void *";
4239 p = "const char *";
4242 p = "int";
4252 p = "uid_t";
4268 p = "int";
4271 p = "pid_t";
4274 p = "void *";
4277 p = "int";
4287 p = "int";
4290 p = "struct msghdr *";
4293 p = "int";
4303 p = "int";
4306 p = "const struct msghdr *";
4309 p = "int";
4319 p = "int";
4322 p = "void *";
4325 p = "size_t";
4328 p = "int";
4331 p = "struct sockaddr *";
4334 p = "socklen_t *";
4344 p = "int";
4347 p = "struct sockaddr *";
4350 p = "socklen_t *";
4360 p = "int";
4363 p = "struct sockaddr *";
4366 p = "socklen_t *";
4376 p = "int";
4379 p = "struct sockaddr *";
4382 p = "socklen_t *";
4392 p = "const char *";
4395 p = "int";
4405 p = "const char *";
4408 p = "u_long";
4418 p = "int";
4421 p = "u_long";
4434 p = "pid_t";
4437 p = "int";
4447 p = "const char *";
4450 p = "struct stat43 *";
4463 p = "const char *";
4466 p = "struct stat43 *";
4476 p = "int";
4492 p = "char *";
4495 p = "size_t";
4498 p = "u_long";
4501 p = "u_int";
4511 p = "const char *";
4514 p = "int";
4517 p = "int";
4520 p = "pid_t";
4530 p = "int";
4533 p = "const struct sigaction13 *";
4536 p = "struct sigaction13 *";
4549 p = "int";
4552 p = "int";
4562 p = "char *";
4565 p = "size_t";
4575 p = "const char *";
4585 p = "const char *";
4598 p = "const struct sigaltstack13 *";
4601 p = "struct sigaltstack13 *";
4611 p = "int";
4614 p = "u_long";
4617 p = "void *";
4627 p = "int";
4637 p = "const char *";
4647 p = "const char *";
4650 p = "const char *";
4660 p = "const char *";
4663 p = "char *";
4666 p = "size_t";
4676 p = "const char *";
4679 p = "char *const *";
4682 p = "char *const *";
4692 p = "mode_t";
4702 p = "const char *";
4712 p = "int";
4715 p = "struct stat43 *";
4725 p = "int";
4728 p = "char *";
4731 p = "int *";
4734 p = "int";
4747 p = "void *";
4750 p = "size_t";
4763 p = "void *";
4766 p = "size_t";
4769 p = "int";
4772 p = "int";
4775 p = "int";
4778 p = "long";
4788 p = "int";
4798 p = "void *";
4801 p = "size_t";
4811 p = "void *";
4814 p = "size_t";
4817 p = "int";
4827 p = "void *";
4830 p = "size_t";
4833 p = "int";
4843 p = "void *";
4846 p = "size_t";
4849 p = "char *";
4859 p = "int";
4862 p = "gid_t *";
4872 p = "int";
4875 p = "const gid_t *";
4888 p = "pid_t";
4891 p = "pid_t";
4901 p = "int";
4904 p = "const struct itimerval50 *";
4907 p = "struct itimerval50 *";
4920 p = "const char *";
4930 p = "int";
4933 p = "struct itimerval50 *";
4943 p = "char *";
4946 p = "u_int";
4956 p = "char *";
4959 p = "u_int";
4972 p = "int";
4975 p = "int";
4985 p = "void *";
4988 p = "size_t";
4991 p = "unsigned int";
5001 p = "int";
5004 p = "int";
5007 p = "void *";
5017 p = "int";
5020 p = "fd_set *";
5023 p = "fd_set *";
5026 p = "fd_set *";
5029 p = "struct timeval50 *";
5039 p = "int";
5049 p = "int";
5052 p = "id_t";
5055 p = "int";
5065 p = "int";
5068 p = "int";
5071 p = "int";
5081 p = "int";
5084 p = "const struct sockaddr *";
5087 p = "socklen_t";
5097 p = "int";
5100 p = "void *";
5103 p = "socklen_t *";
5113 p = "int";
5116 p = "id_t";
5126 p = "int";
5129 p = "void *";
5132 p = "int";
5135 p = "int";
5145 p = "int";
5148 p = "void *";
5151 p = "int";
5154 p = "int";
5164 p = "struct sigcontext13 *";
5174 p = "int";
5177 p = "const struct sockaddr *";
5180 p = "socklen_t";
5190 p = "int";
5193 p = "int";
5196 p = "int";
5199 p = "const void *";
5202 p = "socklen_t";
5212 p = "int";
5215 p = "int";
5225 p = "int";
5228 p = "struct sigvec *";
5231 p = "struct sigvec *";
5241 p = "int";
5251 p = "int";
5261 p = "int";
5271 p = "struct sigstack *";
5274 p = "struct sigstack *";
5284 p = "int";
5287 p = "struct omsghdr *";
5290 p = "int";
5300 p = "int";
5303 p = "void *";
5306 p = "int";
5316 p = "struct timeval50 *";
5319 p = "void *";
5329 p = "int";
5332 p = "struct rusage50 *";
5342 p = "int";
5345 p = "int";
5348 p = "int";
5351 p = "void *";
5354 p = "socklen_t *";
5364 p = "int";
5367 p = "const struct iovec *";
5370 p = "int";
5380 p = "int";
5383 p = "const struct iovec *";
5386 p = "int";
5396 p = "const struct timeval50 *";
5399 p = "const void *";
5409 p = "int";
5412 p = "uid_t";
5415 p = "gid_t";
5425 p = "int";
5428 p = "mode_t";
5438 p = "int";
5441 p = "void *";
5444 p = "size_t";
5447 p = "int";
5450 p = "void *";
5453 p = "socklen_t *";
5463 p = "uid_t";
5466 p = "uid_t";
5476 p = "gid_t";
5479 p = "gid_t";
5489 p = "const char *";
5492 p = "const char *";
5502 p = "const char *";
5505 p = "long";
5515 p = "int";
5518 p = "long";
5528 p = "int";
5531 p = "int";
5541 p = "const char *";
5544 p = "mode_t";
5554 p = "int";
5557 p = "const void *";
5560 p = "size_t";
5563 p = "int";
5566 p = "const struct sockaddr *";
5569 p = "socklen_t";
5579 p = "int";
5582 p = "int";
5592 p = "int";
5595 p = "int";
5598 p = "int";
5601 p = "int *";
5611 p = "const char *";
5614 p = "mode_t";
5624 p = "const char *";
5634 p = "const char *";
5637 p = "const struct timeval50 *";
5647 p = "const struct timeval50 *";
5650 p = "struct timeval50 *";
5660 p = "int";
5663 p = "void *";
5666 p = "socklen_t *";
5679 p = "int32_t";
5689 p = "int";
5692 p = "struct orlimit *";
5702 p = "int";
5705 p = "const struct orlimit *";
5715 p = "int";
5718 p = "int";
5731 p = "const char *";
5734 p = "int";
5737 p = "int";
5740 p = "void *";
5753 p = "int";
5756 p = "void *";
5759 p = "socklen_t *";
5769 p = "int";
5772 p = "void *";
5782 p = "int";
5785 p = "char *";
5788 p = "u_int";
5791 p = "long *";
5801 p = "const char *";
5804 p = "struct statfs12 *";
5814 p = "int";
5817 p = "struct statfs12 *";
5827 p = "const char *";
5830 p = "struct compat_30_fhandle *";
5840 p = "char *";
5843 p = "int";
5853 p = "char *";
5856 p = "int";
5866 p = "struct outsname *";
5876 p = "int";
5879 p = "void *";
5889 p = "int *";
5892 p = "int";
5895 p = "int";
5898 p = "const struct timespec *";
5901 p = "int *";
5904 p = "int";
5907 p = "int";
5917 p = "void *";
5920 p = "size_t";
5930 p = "lwpid_t";
5933 p = "void **";
5936 p = "size_t *";
5947 p = "int";
5950 p = "int";
5953 p = "int";
5956 p = "int";
5959 p = "int";
5972 p = "int";
5975 p = "int";
5978 p = "int";
5981 p = "int";
5984 p = "int";
5987 p = "int";
6000 p = "int";
6003 p = "int";
6006 p = "int";
6009 p = "int";
6021 p = "int";
6024 p = "void *";
6027 p = "size_t";
6030 p = "int";
6033 p = "off_t";
6043 p = "int";
6046 p = "const void *";
6049 p = "size_t";
6052 p = "int";
6055 p = "off_t";
6065 p = "struct ntptimeval30 *";
6076 p = "struct timex *";
6088 p = "clockid_t";
6091 p = "int";
6101 p = "int";
6104 p = "int";
6107 p = "const struct itimerspec *";
6110 p = "struct itimerspec *";
6120 p = "int";
6123 p = "struct itimerspec *";
6133 p = "gid_t";
6143 p = "gid_t";
6153 p = "uid_t";
6163 p = "fsid_t *";
6166 p = "struct block_info *";
6169 p = "int";
6179 p = "fsid_t *";
6182 p = "struct block_info *";
6185 p = "int";
6195 p = "fsid_t *";
6198 p = "u_long";
6208 p = "fsid_t *";
6211 p = "struct timeval50 *";
6221 p = "const char *";
6224 p = "struct stat12 *";
6234 p = "int";
6237 p = "struct stat12 *";
6247 p = "const char *";
6250 p = "struct stat12 *";
6260 p = "const char *";
6263 p = "int";
6273 p = "int";
6276 p = "int";
6286 p = "int";
6289 p = "int";
6292 p = "int";
6295 p = "void *";
6298 p = "socklen_t *";
6308 p = "int";
6311 p = "struct rlimit *";
6321 p = "int";
6324 p = "const struct rlimit *";
6334 p = "int";
6337 p = "char *";
6340 p = "u_int";
6343 p = "long *";
6353 p = "void *";
6356 p = "size_t";
6359 p = "int";
6362 p = "int";
6365 p = "int";
6368 p = "long";
6371 p = "off_t";
6381 p = "quad_t";
6384 p = "register_t";
6394 p = "int";
6397 p = "int";
6400 p = "off_t";
6403 p = "int";
6413 p = "const char *";
6416 p = "int";
6419 p = "off_t";
6429 p = "int";
6432 p = "int";
6435 p = "off_t";
6445 p = "const int *";
6448 p = "u_int";
6451 p = "void *";
6454 p = "size_t *";
6457 p = "const void *";
6460 p = "size_t";
6470 p = "const void *";
6473 p = "size_t";
6483 p = "const void *";
6486 p = "size_t";
6496 p = "const char *";
6506 p = "int";
6509 p = "const struct timeval50 *";
6519 p = "pid_t";
6529 p = "int";
6532 p = "char *";
6542 p = "struct pollfd *";
6545 p = "u_int";
6548 p = "int";
6558 p = "long";
6561 p = "long";
6564 p = "long";
6567 p = "long";
6570 p = "long";
6573 p = "long";
6576 p = "long";
6586 p = "int";
6589 p = "int";
6592 p = "int";
6595 p = "union __semun *";
6605 p = "key_t";
6608 p = "int";
6611 p = "int";
6621 p = "int";
6624 p = "struct sembuf *";
6627 p = "size_t";
6637 p = "int";
6647 p = "int";
6650 p = "int";
6653 p = "struct msqid_ds14 *";
6663 p = "key_t";
6666 p = "int";
6676 p = "int";
6679 p = "const void *";
6682 p = "size_t";
6685 p = "int";
6695 p = "int";
6698 p = "void *";
6701 p = "size_t";
6704 p = "long";
6707 p = "int";
6717 p = "int";
6720 p = "const void *";
6723 p = "int";
6733 p = "int";
6736 p = "int";
6739 p = "struct shmid_ds14 *";
6749 p = "const void *";
6759 p = "key_t";
6762 p = "size_t";
6765 p = "int";
6775 p = "clockid_t";
6778 p = "struct timespec50 *";
6788 p = "clockid_t";
6791 p = "const struct timespec50 *";
6801 p = "clockid_t";
6804 p = "struct timespec50 *";
6814 p = "clockid_t";
6817 p = "struct sigevent *";
6820 p = "timer_t *";
6830 p = "timer_t";
6840 p = "timer_t";
6843 p = "int";
6846 p = "const struct itimerspec50 *";
6849 p = "struct itimerspec50 *";
6859 p = "timer_t";
6862 p = "struct itimerspec50 *";
6872 p = "timer_t";
6882 p = "const struct timespec50 *";
6885 p = "struct timespec50 *";
6895 p = "int";
6905 p = "int";
6918 p = "const sigset_t *";
6921 p = "siginfo_t *";
6924 p = "struct timespec50 *";
6934 p = "pid_t";
6937 p = "const siginfo_t *";
6947 p = "int";
6950 p = "void *";
6960 p = "unsigned int";
6963 p = "intptr_t *";
6973 p = "const char *";
6976 p = "int";
6979 p = "mode_t";
6982 p = "unsigned int";
6985 p = "intptr_t *";
6995 p = "const char *";
7005 p = "intptr_t";
7015 p = "intptr_t";
7025 p = "intptr_t";
7035 p = "intptr_t";
7045 p = "intptr_t";
7048 p = "unsigned int *";
7058 p = "intptr_t";
7068 p = "intptr_t";
7071 p = "const struct timespec *";
7081 p = "const char *";
7084 p = "int";
7087 p = "mode_t";
7090 p = "struct mq_attr *";
7100 p = "mqd_t";
7110 p = "const char *";
7120 p = "mqd_t";
7123 p = "struct mq_attr *";
7133 p = "mqd_t";
7136 p = "const struct mq_attr *";
7139 p = "struct mq_attr *";
7149 p = "mqd_t";
7152 p = "const struct sigevent *";
7162 p = "mqd_t";
7165 p = "const char *";
7168 p = "size_t";
7171 p = "unsigned";
7181 p = "mqd_t";
7184 p = "char *";
7187 p = "size_t";
7190 p = "unsigned *";
7200 p = "mqd_t";
7203 p = "const char *";
7206 p = "size_t";
7209 p = "unsigned";
7212 p = "const struct timespec50 *";
7222 p = "mqd_t";
7225 p = "char *";
7228 p = "size_t";
7231 p = "unsigned *";
7234 p = "const struct timespec50 *";
7244 p = "unsigned int";
7247 p = "int";
7257 p = "const char *";
7260 p = "const char *";
7270 p = "int";
7273 p = "void *";
7276 p = "int";
7286 p = "int";
7289 p = "char *";
7292 p = "size_t";
7302 p = "void *";
7305 p = "size_t";
7308 p = "int";
7318 p = "const char *";
7321 p = "mode_t";
7331 p = "const char *";
7334 p = "uid_t";
7337 p = "gid_t";
7347 p = "const char *";
7350 p = "const struct timeval50 *";
7360 p = "void *";
7363 p = "size_t";
7366 p = "int";
7376 p = "const char *";
7379 p = "struct stat13 *";
7389 p = "int";
7392 p = "struct stat13 *";
7402 p = "const char *";
7405 p = "struct stat13 *";
7415 p = "const stack_t *";
7418 p = "stack_t *";
7431 p = "const char *";
7434 p = "uid_t";
7437 p = "gid_t";
7447 p = "int";
7450 p = "uid_t";
7453 p = "gid_t";
7463 p = "const char *";
7466 p = "uid_t";
7469 p = "gid_t";
7479 p = "pid_t";
7489 p = "int";
7492 p = "void *";
7502 p = "int";
7505 p = "int";
7508 p = "int";
7511 p = "pid_t";
7521 p = "int";
7524 p = "const struct iovec *";
7527 p = "int";
7530 p = "int";
7533 p = "off_t";
7543 p = "int";
7546 p = "const struct iovec *";
7549 p = "int";
7552 p = "int";
7555 p = "off_t";
7565 p = "int";
7568 p = "const struct sigaction *";
7571 p = "struct sigaction *";
7581 p = "sigset_t *";
7591 p = "int";
7594 p = "const sigset_t *";
7597 p = "sigset_t *";
7607 p = "const sigset_t *";
7617 p = "struct sigcontext *";
7627 p = "char *";
7630 p = "size_t";
7640 p = "int";
7650 p = "const struct compat_30_fhandle *";
7653 p = "int";
7663 p = "const struct compat_30_fhandle *";
7666 p = "struct stat13 *";
7676 p = "const struct compat_30_fhandle *";
7679 p = "struct statfs12 *";
7689 p = "int";
7692 p = "int";
7695 p = "int";
7698 p = "union __semun *";
7708 p = "int";
7711 p = "int";
7714 p = "struct msqid_ds *";
7724 p = "int";
7727 p = "int";
7730 p = "struct shmid_ds13 *";
7740 p = "const char *";
7743 p = "u_long";
7756 p = "const char *";
7759 p = "void *";
7762 p = "size_t";
7772 p = "struct __ucontext *";
7782 p = "const struct __ucontext *";
7792 p = "const struct __ucontext *";
7795 p = "u_long";
7798 p = "lwpid_t *";
7814 p = "lwpid_t";
7817 p = "lwpid_t *";
7827 p = "lwpid_t";
7837 p = "lwpid_t";
7847 p = "lwpid_t";
7860 p = "void *";
7870 p = "lwpid_t";
7873 p = "int";
7883 p = "lwpid_t";
7893 p = "const struct timespec50 *";
7896 p = "lwpid_t";
7899 p = "const void *";
7902 p = "const void *";
7912 p = "lwpid_t";
7915 p = "const void *";
7925 p = "const lwpid_t *";
7928 p = "size_t";
7931 p = "const void *";
7941 p = "lwpid_t";
7944 p = "const char *";
7954 p = "lwpid_t";
7957 p = "char *";
7960 p = "size_t";
7970 p = "int";
7973 p = "struct lwpctl **";
7983 p = "void *";
7986 p = "void **";
7989 p = "int";
7992 p = "ssize_t";
8002 p = "int";
8005 p = "stack_t *";
8018 p = "int";
8031 p = "int";
8041 p = "int";
8044 p = "const struct sigaction *";
8047 p = "struct sigaction *";
8050 p = "const void *";
8053 p = "int";
8063 p = "void *";
8066 p = "size_t";
8069 p = "int";
8082 p = "int";
8085 p = "const struct kevent100 *";
8088 p = "size_t";
8091 p = "struct kevent100 *";
8094 p = "size_t";
8097 p = "const struct timespec50 *";
8107 p = "pid_t";
8110 p = "lwpid_t";
8113 p = "int";
8116 p = "const struct sched_param *";
8126 p = "pid_t";
8129 p = "lwpid_t";
8132 p = "int *";
8135 p = "struct sched_param *";
8145 p = "pid_t";
8148 p = "lwpid_t";
8151 p = "size_t";
8154 p = "const cpuset_t *";
8164 p = "pid_t";
8167 p = "lwpid_t";
8170 p = "size_t";
8173 p = "cpuset_t *";
8186 p = "int";
8196 p = "int";
8199 p = "int";
8202 p = "off_t";
8205 p = "off_t";
8215 p = "struct uuid *";
8218 p = "int";
8228 p = "struct statvfs90 *";
8231 p = "size_t";
8234 p = "int";
8244 p = "const char *";
8247 p = "struct statvfs90 *";
8250 p = "int";
8260 p = "int";
8263 p = "struct statvfs90 *";
8266 p = "int";
8276 p = "const struct compat_30_fhandle *";
8279 p = "struct statvfs90 *";
8282 p = "int";
8292 p = "const char *";
8295 p = "int";
8298 p = "const char *";
8301 p = "int";
8304 p = "const char *";
8314 p = "const char *";
8317 p = "int";
8320 p = "const char *";
8323 p = "const void *";
8326 p = "size_t";
8336 p = "const char *";
8339 p = "int";
8342 p = "const char *";
8345 p = "void *";
8348 p = "size_t";
8358 p = "const char *";
8361 p = "int";
8364 p = "const char *";
8374 p = "int";
8377 p = "int";
8380 p = "const char *";
8383 p = "const void *";
8386 p = "size_t";
8396 p = "int";
8399 p = "int";
8402 p = "const char *";
8405 p = "void *";
8408 p = "size_t";
8418 p = "int";
8421 p = "int";
8424 p = "const char *";
8434 p = "const char *";
8437 p = "int";
8440 p = "const char *";
8443 p = "const void *";
8446 p = "size_t";
8456 p = "const char *";
8459 p = "int";
8462 p = "const char *";
8465 p = "void *";
8468 p = "size_t";
8478 p = "const char *";
8481 p = "int";
8484 p = "const char *";
8494 p = "int";
8497 p = "int";
8500 p = "void *";
8503 p = "size_t";
8513 p = "const char *";
8516 p = "int";
8519 p = "void *";
8522 p = "size_t";
8532 p = "const char *";
8535 p = "int";
8538 p = "void *";
8541 p = "size_t";
8551 p = "int";
8554 p = "fd_set *";
8557 p = "fd_set *";
8560 p = "fd_set *";
8563 p = "const struct timespec50 *";
8566 p = "const sigset_t *";
8576 p = "struct pollfd *";
8579 p = "u_int";
8582 p = "const struct timespec50 *";
8585 p = "const sigset_t *";
8595 p = "const char *";
8598 p = "const char *";
8601 p = "const void *";
8604 p = "size_t";
8607 p = "int";
8617 p = "const char *";
8620 p = "const char *";
8623 p = "const void *";
8626 p = "size_t";
8629 p = "int";
8639 p = "int";
8642 p = "const char *";
8645 p = "const void *";
8648 p = "size_t";
8651 p = "int";
8661 p = "const char *";
8664 p = "const char *";
8667 p = "void *";
8670 p = "size_t";
8680 p = "const char *";
8683 p = "const char *";
8686 p = "void *";
8689 p = "size_t";
8699 p = "int";
8702 p = "const char *";
8705 p = "void *";
8708 p = "size_t";
8718 p = "const char *";
8721 p = "char *";
8724 p = "size_t";
8734 p = "const char *";
8737 p = "char *";
8740 p = "size_t";
8750 p = "int";
8753 p = "char *";
8756 p = "size_t";
8766 p = "const char *";
8769 p = "const char *";
8779 p = "const char *";
8782 p = "const char *";
8792 p = "int";
8795 p = "const char *";
8805 p = "const char *";
8808 p = "struct stat30 *";
8818 p = "int";
8821 p = "struct stat30 *";
8831 p = "const char *";
8834 p = "struct stat30 *";
8844 p = "int";
8847 p = "char *";
8850 p = "size_t";
8860 p = "const struct compat_30_fhandle *";
8863 p = "struct stat30 *";
8873 p = "struct ntptimeval50 *";
8883 p = "int";
8886 p = "int";
8889 p = "int";
8899 p = "const char *";
8902 p = "void *";
8905 p = "size_t *";
8915 p = "const void *";
8918 p = "size_t";
8921 p = "int";
8931 p = "const void *";
8934 p = "size_t";
8937 p = "struct statvfs90 *";
8940 p = "int";
8950 p = "const void *";
8953 p = "size_t";
8956 p = "struct stat30 *";
8966 p = "int";
8969 p = "struct aiocb *";
8979 p = "const struct aiocb *";
8989 p = "int";
8992 p = "struct aiocb *";
9002 p = "struct aiocb *";
9012 p = "struct aiocb *";
9022 p = "const struct aiocb *const *";
9025 p = "int";
9028 p = "const struct timespec50 *";
9038 p = "struct aiocb *";
9048 p = "int";
9051 p = "struct aiocb *const *";
9054 p = "int";
9057 p = "struct sigevent *";
9067 p = "const char *";
9070 p = "const char *";
9073 p = "int";
9076 p = "void *";
9079 p = "size_t";
9089 p = "void *";
9092 p = "size_t";
9095 p = "void *";
9098 p = "size_t";
9101 p = "int";
9111 p = "psetid_t *";
9121 p = "psetid_t";
9131 p = "psetid_t";
9134 p = "cpuid_t";
9137 p = "psetid_t *";
9147 p = "idtype_t";
9150 p = "id_t";
9153 p = "id_t";
9156 p = "psetid_t";
9159 p = "psetid_t *";
9169 p = "int";
9172 p = "int";
9175 p = "off_t";
9178 p = "off_t";
9181 p = "int";
9191 p = "int";
9194 p = "fd_set *";
9197 p = "fd_set *";
9200 p = "fd_set *";
9203 p = "struct timeval *";
9213 p = "struct timeval *";
9216 p = "void *";
9226 p = "const struct timeval *";
9229 p = "const void *";
9239 p = "const char *";
9242 p = "const struct timeval *";
9252 p = "const struct timeval *";
9255 p = "struct timeval *";
9265 p = "fsid_t *";
9268 p = "struct timeval *";
9278 p = "int";
9281 p = "const struct timeval *";
9291 p = "const char *";
9294 p = "const struct timeval *";
9304 p = "int";
9307 p = "const struct itimerval *";
9310 p = "struct itimerval *";
9320 p = "int";
9323 p = "struct itimerval *";
9333 p = "clockid_t";
9336 p = "struct timespec *";
9346 p = "clockid_t";
9349 p = "const struct timespec *";
9359 p = "clockid_t";
9362 p = "struct timespec *";
9372 p = "const struct timespec *";
9375 p = "struct timespec *";
9385 p = "const sigset_t *";
9388 p = "siginfo_t *";
9391 p = "struct timespec *";
9401 p = "mqd_t";
9404 p = "const char *";
9407 p = "size_t";
9410 p = "unsigned";
9413 p = "const struct timespec *";
9423 p = "mqd_t";
9426 p = "char *";
9429 p = "size_t";
9432 p = "unsigned *";
9435 p = "const struct timespec *";
9445 p = "const struct timespec *";
9448 p = "lwpid_t";
9451 p = "const void *";
9454 p = "const void *";
9464 p = "int";
9467 p = "const struct kevent100 *";
9470 p = "size_t";
9473 p = "struct kevent100 *";
9476 p = "size_t";
9479 p = "const struct timespec *";
9489 p = "int";
9492 p = "fd_set *";
9495 p = "fd_set *";
9498 p = "fd_set *";
9501 p = "const struct timespec *";
9504 p = "const sigset_t *";
9514 p = "struct pollfd *";
9517 p = "u_int";
9520 p = "const struct timespec *";
9523 p = "const sigset_t *";
9533 p = "const struct aiocb *const *";
9536 p = "int";
9539 p = "const struct timespec *";
9549 p = "const char *";
9552 p = "struct stat *";
9562 p = "int";
9565 p = "struct stat *";
9575 p = "const char *";
9578 p = "struct stat *";
9588 p = "int";
9591 p = "int";
9594 p = "int";
9597 p = "union __semun *";
9607 p = "int";
9610 p = "int";
9613 p = "struct shmid_ds *";
9623 p = "int";
9626 p = "int";
9629 p = "struct msqid_ds *";
9639 p = "int";
9642 p = "struct rusage *";
9652 p = "timer_t";
9655 p = "int";
9658 p = "const struct itimerspec *";
9661 p = "struct itimerspec *";
9671 p = "timer_t";
9674 p = "struct itimerspec *";
9685 p = "struct ntptimeval *";
9697 p = "pid_t";
9700 p = "int *";
9703 p = "int";
9706 p = "struct rusage *";
9716 p = "const char *";
9719 p = "mode_t";
9722 p = "dev_t";
9732 p = "const void *";
9735 p = "size_t";
9738 p = "struct stat *";
9748 p = "int *";
9751 p = "int";
9761 p = "int";
9764 p = "int";
9767 p = "int";
9777 p = "int";
9787 p = "int";
9790 p = "struct sockaddr *";
9793 p = "socklen_t *";
9796 p = "const sigset_t *";
9799 p = "int";
9809 p = "int";
9812 p = "const char *";
9815 p = "int";
9818 p = "const char *";
9821 p = "int";
9831 p = "int";
9834 p = "const char *";
9837 p = "int";
9840 p = "const char *";
9850 p = "int";
9853 p = "const char *";
9856 p = "mode_t";
9866 p = "int";
9869 p = "const char *";
9872 p = "mode_t";
9875 p = "int";
9878 p = "dev_t";
9888 p = "int";
9891 p = "const char *";
9894 p = "mode_t";
9904 p = "int";
9907 p = "const char *";
9910 p = "int";
9913 p = "int";
9923 p = "int";
9926 p = "const char *";
9929 p = "mode_t";
9932 p = "int";
9942 p = "int";
9945 p = "const char *";
9948 p = "uid_t";
9951 p = "gid_t";
9954 p = "int";
9964 p = "int";
9967 p = "char *const *";
9970 p = "char *const *";
9980 p = "int";
9983 p = "const char *";
9986 p = "struct stat *";
9989 p = "int";
9999 p = "int";
10002 p = "const char *";
10005 p = "const struct timespec *";
10008 p = "int";
10018 p = "int";
10021 p = "const char *";
10024 p = "int";
10027 p = "mode_t";
10037 p = "int";
10040 p = "const char *";
10043 p = "char *";
10046 p = "size_t";
10056 p = "const char *";
10059 p = "int";
10062 p = "const char *";
10072 p = "int";
10075 p = "const char *";
10078 p = "int";
10088 p = "int";
10091 p = "const struct timespec *";
10101 p = "const char *";
10104 p = "struct quotactl_args *";
10114 p = "pid_t *";
10117 p = "const char *";
10120 p = "const struct posix_spawn_file_actions *";
10123 p = "const struct posix_spawnattr *";
10126 p = "char *const *";
10129 p = "char *const *";
10139 p = "int";
10142 p = "struct mmsghdr *";
10145 p = "unsigned int";
10148 p = "unsigned int";
10151 p = "struct timespec *";
10161 p = "int";
10164 p = "struct mmsghdr *";
10167 p = "unsigned int";
10170 p = "unsigned int";
10180 p = "clockid_t";
10183 p = "int";
10186 p = "const struct timespec *";
10189 p = "struct timespec *";
10199 p = "clockid_t";
10202 p = "int";
10205 p = "struct timespec *";
10208 p = "lwpid_t";
10211 p = "const void *";
10214 p = "const void *";
10224 p = "int";
10227 p = "int";
10230 p = "off_t";
10233 p = "off_t";
10243 p = "int";
10246 p = "int";
10249 p = "off_t";
10252 p = "off_t";
10262 p = "idtype_t";
10265 p = "id_t";
10268 p = "int *";
10271 p = "int";
10274 p = "struct wrusage *";
10277 p = "siginfo_t *";
10287 p = "idtype_t";
10290 p = "id_t";
10293 p = "clockid_t *";
10303 p = "struct statvfs *";
10306 p = "size_t";
10309 p = "int";
10319 p = "const char *";
10322 p = "struct statvfs *";
10325 p = "int";
10335 p = "int";
10338 p = "struct statvfs *";
10341 p = "int";
10351 p = "const void *";
10354 p = "size_t";
10357 p = "struct statvfs *";
10360 p = "int";
10370 p = "const char *";
10373 p = "acl_type_t";
10376 p = "struct acl *";
10386 p = "const char *";
10389 p = "acl_type_t";
10392 p = "struct acl *";
10402 p = "const char *";
10405 p = "acl_type_t";
10415 p = "const char *";
10418 p = "acl_type_t";
10421 p = "struct acl *";
10431 p = "const char *";
10434 p = "acl_type_t";
10437 p = "struct acl *";
10447 p = "const char *";
10450 p = "acl_type_t";
10453 p = "struct acl *";
10463 p = "int";
10466 p = "acl_type_t";
10469 p = "struct acl *";
10479 p = "int";
10482 p = "acl_type_t";
10485 p = "struct acl *";
10495 p = "const char *";
10498 p = "acl_type_t";
10508 p = "int";
10511 p = "acl_type_t";
10521 p = "const char *";
10524 p = "acl_type_t";
10527 p = "struct acl *";
10537 p = "int";
10540 p = "acl_type_t";
10543 p = "struct acl *";
10553 p = "const char *";
10556 p = "int";
10566 p = "const char *";
10569 p = "unsigned int";
10579 p = "int";
10582 p = "const struct kevent *";
10585 p = "size_t";
10588 p = "struct kevent *";
10591 p = "size_t";
10594 p = "const struct timespec *";
10604 p = "int";
10614 p = "int";
10617 p = "int";
10620 p = "int";
10623 p = "struct epoll_event *";
10633 p = "int";
10636 p = "struct epoll_event *";
10639 p = "int";
10642 p = "const struct timespec *";
10645 p = "const sigset_t *";
10655 p = "int";
10658 p = "int";
10661 p = "int";
10671 p = "int";
10674 p = "struct sembuf *";
10677 p = "size_t";
10680 p = "struct timespec *";
10689 if (p != NULL)
10690 strlcpy(desc, p, descsz);
10695 const char *p = NULL;
10700 p = "int";
10705 p = "void";
10712 p = "ssize_t";
10717 p = "ssize_t";
10722 p = "int";
10727 p = "int";
10732 p = "int";
10737 p = "int";
10742 p = "int";
10747 p = "int";
10752 p = "int";
10757 p = "int";
10762 p = "int";
10767 p = "int";
10772 p = "int";
10777 p = "int";
10782 p = "int";
10787 p = "long";
10794 p = "int";
10799 p = "int";
10804 p = "int";
10813 p = "int";
10818 p = "ssize_t";
10823 p = "ssize_t";
10828 p = "ssize_t";
10833 p = "int";
10838 p = "int";
10843 p = "int";
10848 p = "int";
10853 p = "int";
10858 p = "int";
10865 p = "int";
10870 p = "int";
10877 p = "int";
10882 p = "int";
10891 p = "int";
10896 p = "int";
10901 p = "int";
10908 p = "int";
10913 p = "int";
10918 p = "int";
10923 p = "int";
10930 p = "int";
10935 p = "int";
10940 p = "int";
10945 p = "int";
10950 p = "int";
10955 p = "ssize_t";
10960 p = "int";
10965 p = "mode_t";
10970 p = "int";
10975 p = "int";
10980 p = "int";
10987 p = "int";
10994 p = "int";
10999 p = "int";
11004 p = "int";
11009 p = "int";
11014 p = "int";
11019 p = "int";
11024 p = "int";
11029 p = "int";
11036 p = "int";
11041 p = "int";
11048 p = "int";
11053 p = "int";
11058 p = "int";
11063 p = "int";
11070 p = "int";
11075 p = "ssize_t";
11080 p = "int";
11085 p = "int";
11090 p = "int";
11095 p = "int";
11100 p = "int";
11105 p = "int";
11110 p = "int";
11115 p = "int";
11120 p = "int";
11125 p = "int";
11130 p = "int";
11135 p = "int";
11140 p = "int";
11145 p = "int";
11150 p = "int";
11155 p = "int";
11160 p = "int";
11165 p = "int";
11170 p = "int";
11175 p = "int";
11180 p = "int";
11185 p = "int";
11190 p = "int";
11195 p = "int";
11200 p = "ssize_t";
11205 p = "ssize_t";
11210 p = "int";
11215 p = "int";
11220 p = "int";
11225 p = "int";
11230 p = "int";
11235 p = "int";
11240 p = "int";
11245 p = "int";
11250 p = "int";
11255 p = "int";
11260 p = "int";
11265 p = "ssize_t";
11270 p = "int";
11275 p = "int";
11280 p = "int";
11285 p = "int";
11290 p = "int";
11295 p = "int";
11300 p = "int";
11307 p = "int";
11312 p = "int";
11317 p = "int";
11322 p = "int";
11329 p = "int";
11336 p = "int";
11341 p = "int";
11346 p = "int";
11351 p = "int";
11356 p = "int";
11361 p = "int";
11366 p = "int";
11371 p = "int";
11376 p = "int";
11381 p = "int";
11386 p = "int";
11391 p = "int";
11396 p = "int";
11402 p = "int";
11410 p = "int";
11418 p = "int";
11425 p = "ssize_t";
11430 p = "ssize_t";
11435 p = "int";
11441 p = "int";
11448 p = "int";
11453 p = "int";
11458 p = "int";
11463 p = "int";
11468 p = "int";
11473 p = "int";
11478 p = "int";
11483 p = "int";
11488 p = "int";
11493 p = "int";
11498 p = "int";
11503 p = "int";
11508 p = "int";
11513 p = "long";
11518 p = "long";
11523 p = "int";
11528 p = "int";
11533 p = "int";
11538 p = "int";
11543 p = "void *";
11548 p = "quad_t";
11553 p = "off_t";
11558 p = "int";
11563 p = "int";
11568 p = "int";
11573 p = "int";
11578 p = "int";
11583 p = "int";
11588 p = "int";
11593 p = "pid_t";
11598 p = "int";
11603 p = "int";
11608 p = "int";
11613 p = "int";
11618 p = "int";
11623 p = "int";
11628 p = "int";
11633 p = "int";
11638 p = "int";
11643 p = "int";
11648 p = "ssize_t";
11653 p = "void *";
11658 p = "int";
11663 p = "int";
11668 p = "int";
11673 p = "int";
11678 p = "int";
11683 p = "int";
11688 p = "int";
11693 p = "int";
11698 p = "int";
11703 p = "int";
11708 p = "int";
11713 p = "int";
11718 p = "int";
11723 p = "int";
11730 p = "int";
11735 p = "int";
11740 p = "int";
11745 p = "int";
11750 p = "int";
11755 p = "int";
11760 p = "int";
11765 p = "int";
11770 p = "int";
11775 p = "int";
11780 p = "int";
11785 p = "int";
11790 p = "int";
11795 p = "mqd_t";
11800 p = "int";
11805 p = "int";
11810 p = "int";
11815 p = "int";
11820 p = "int";
11825 p = "int";
11830 p = "ssize_t";
11835 p = "int";
11840 p = "ssize_t";
11845 p = "int";
11850 p = "int";
11855 p = "int";
11860 p = "int";
11865 p = "int";
11870 p = "int";
11875 p = "int";
11880 p = "int";
11885 p = "int";
11890 p = "int";
11895 p = "int";
11900 p = "int";
11905 p = "int";
11912 p = "int";
11917 p = "int";
11922 p = "int";
11927 p = "pid_t";
11932 p = "pid_t";
11937 p = "int";
11942 p = "ssize_t";
11947 p = "ssize_t";
11952 p = "int";
11957 p = "int";
11962 p = "int";
11967 p = "int";
11972 p = "int";
11977 p = "int";
11982 p = "int";
11987 p = "int";
11992 p = "int";
11997 p = "int";
12002 p = "int";
12007 p = "int";
12012 p = "int";
12017 p = "int";
12024 p = "int";
12029 p = "int";
12034 p = "int";
12039 p = "int";
12048 p = "int";
12053 p = "int";
12058 p = "int";
12063 p = "int";
12070 p = "void";
12075 p = "int";
12080 p = "int";
12085 p = "int";
12090 p = "int";
12095 p = "ssize_t";
12100 p = "int";
12105 p = "int";
12110 p = "int";
12115 p = "int";
12120 p = "int";
12127 p = "int";
12134 p = "int";
12139 p = "int";
12144 p = "int";
12151 p = "int";
12156 p = "int";
12161 p = "int";
12166 p = "int";
12171 p = "int";
12178 p = "int";
12183 p = "int";
12188 p = "int";
12193 p = "int";
12198 p = "int";
12203 p = "int";
12208 p = "int";
12213 p = "int";
12218 p = "int";
12223 p = "ssize_t";
12228 p = "int";
12233 p = "int";
12238 p = "ssize_t";
12243 p = "int";
12248 p = "int";
12253 p = "ssize_t";
12258 p = "int";
12263 p = "ssize_t";
12268 p = "ssize_t";
12273 p = "ssize_t";
12278 p = "int";
12283 p = "int";
12288 p = "int";
12293 p = "int";
12298 p = "int";
12303 p = "int";
12308 p = "int";
12313 p = "int";
12318 p = "int";
12323 p = "int";
12328 p = "int";
12333 p = "int";
12338 p = "int";
12343 p = "int";
12348 p = "int";
12353 p = "int";
12358 p = "int";
12363 p = "int";
12368 p = "int";
12373 p = "int";
12378 p = "int";
12383 p = "int";
12388 p = "int";
12393 p = "int";
12398 p = "int";
12403 p = "int";
12408 p = "int";
12413 p = "int";
12418 p = "int";
12423 p = "int";
12428 p = "int";
12433 p = "int";
12438 p = "int";
12443 p = "int";
12448 p = "void *";
12453 p = "int";
12458 p = "int";
12463 p = "int";
12468 p = "int";
12473 p = "int";
12478 p = "int";
12483 p = "int";
12488 p = "int";
12493 p = "int";
12498 p = "int";
12503 p = "int";
12508 p = "int";
12513 p = "int";
12518 p = "int";
12523 p = "int";
12528 p = "int";
12533 p = "int";
12538 p = "int";
12543 p = "int";
12548 p = "int";
12553 p = "int";
12558 p = "ssize_t";
12563 p = "int";
12568 p = "int";
12573 p = "int";
12578 p = "int";
12583 p = "int";
12588 p = "int";
12593 p = "int";
12598 p = "int";
12603 p = "int";
12608 p = "int";
12613 p = "int";
12618 p = "int";
12623 p = "int";
12628 p = "int";
12634 p = "int";
12641 p = "int";
12646 p = "int";
12651 p = "int";
12656 p = "int";
12661 p = "int";
12666 p = "int";
12671 p = "int";
12676 p = "int";
12681 p = "int";
12686 p = "int";
12691 p = "int";
12696 p = "int";
12701 p = "int";
12706 p = "int";
12711 p = "int";
12716 p = "int";
12721 p = "int";
12726 p = "int";
12731 p = "int";
12736 p = "ssize_t";
12741 p = "int";
12746 p = "int";
12751 p = "int";
12756 p = "int";
12761 p = "int";
12766 p = "int";
12771 p = "int";
12776 p = "int";
12781 p = "int";
12786 p = "int";
12791 p = "int";
12796 p = "int";
12801 p = "int";
12806 p = "int";
12811 p = "int";
12816 p = "int";
12821 p = "int";
12826 p = "int";
12831 p = "int";
12836 p = "int";
12841 p = "int";
12846 p = "int";
12851 p = "int";
12856 p = "int";
12861 p = "int";
12866 p = "int";
12871 p = "int";
12876 p = "int";
12881 p = "int";
12886 p = "long";
12891 p = "int";
12896 p = "int";
12901 p = "int";
12906 p = "int";
12911 p = "int";
12916 p = "int";
12921 p = "int";
12926 if (p != NULL)
12927 strlcpy(desc, p, descsz);