Lines Matching refs:thread

24 struct thread;
1850 int nosys(struct thread *, struct nosys_args *);
1851 void sys_sys_exit(struct thread *, struct sys_exit_args *);
1852 int sys_fork(struct thread *, struct fork_args *);
1853 int sys_read(struct thread *, struct read_args *);
1854 int sys_write(struct thread *, struct write_args *);
1855 int sys_open(struct thread *, struct open_args *);
1856 int sys_close(struct thread *, struct close_args *);
1857 int sys_wait4(struct thread *, struct wait4_args *);
1858 int sys_link(struct thread *, struct link_args *);
1859 int sys_unlink(struct thread *, struct unlink_args *);
1860 int sys_chdir(struct thread *, struct chdir_args *);
1861 int sys_fchdir(struct thread *, struct fchdir_args *);
1862 int sys_chmod(struct thread *, struct chmod_args *);
1863 int sys_chown(struct thread *, struct chown_args *);
1864 int sys_break(struct thread *, struct break_args *);
1865 int sys_getpid(struct thread *, struct getpid_args *);
1866 int sys_mount(struct thread *, struct mount_args *);
1867 int sys_unmount(struct thread *, struct unmount_args *);
1868 int sys_setuid(struct thread *, struct setuid_args *);
1869 int sys_getuid(struct thread *, struct getuid_args *);
1870 int sys_geteuid(struct thread *, struct geteuid_args *);
1871 int sys_ptrace(struct thread *, struct ptrace_args *);
1872 int sys_recvmsg(struct thread *, struct recvmsg_args *);
1873 int sys_sendmsg(struct thread *, struct sendmsg_args *);
1874 int sys_recvfrom(struct thread *, struct recvfrom_args *);
1875 int sys_accept(struct thread *, struct accept_args *);
1876 int sys_getpeername(struct thread *, struct getpeername_args *);
1877 int sys_getsockname(struct thread *, struct getsockname_args *);
1878 int sys_access(struct thread *, struct access_args *);
1879 int sys_chflags(struct thread *, struct chflags_args *);
1880 int sys_fchflags(struct thread *, struct fchflags_args *);
1881 int sys_sync(struct thread *, struct sync_args *);
1882 int sys_kill(struct thread *, struct kill_args *);
1883 int sys_getppid(struct thread *, struct getppid_args *);
1884 int sys_dup(struct thread *, struct dup_args *);
1885 int sys_getegid(struct thread *, struct getegid_args *);
1886 int sys_profil(struct thread *, struct profil_args *);
1887 int sys_ktrace(struct thread *, struct ktrace_args *);
1888 int sys_getgid(struct thread *, struct getgid_args *);
1889 int sys_getlogin(struct thread *, struct getlogin_args *);
1890 int sys_setlogin(struct thread *, struct setlogin_args *);
1891 int sys_acct(struct thread *, struct acct_args *);
1892 int sys_sigaltstack(struct thread *, struct sigaltstack_args *);
1893 int sys_ioctl(struct thread *, struct ioctl_args *);
1894 int sys_reboot(struct thread *, struct reboot_args *);
1895 int sys_revoke(struct thread *, struct revoke_args *);
1896 int sys_symlink(struct thread *, struct symlink_args *);
1897 int sys_readlink(struct thread *, struct readlink_args *);
1898 int sys_execve(struct thread *, struct execve_args *);
1899 int sys_umask(struct thread *, struct umask_args *);
1900 int sys_chroot(struct thread *, struct chroot_args *);
1901 int sys_msync(struct thread *, struct msync_args *);
1902 int sys_vfork(struct thread *, struct vfork_args *);
1903 int sys_sbrk(struct thread *, struct sbrk_args *);
1904 int sys_sstk(struct thread *, struct sstk_args *);
1905 int sys_munmap(struct thread *, struct munmap_args *);
1906 int sys_mprotect(struct thread *, struct mprotect_args *);
1907 int sys_madvise(struct thread *, struct madvise_args *);
1908 int sys_mincore(struct thread *, struct mincore_args *);
1909 int sys_getgroups(struct thread *, struct getgroups_args *);
1910 int sys_setgroups(struct thread *, struct setgroups_args *);
1911 int sys_getpgrp(struct thread *, struct getpgrp_args *);
1912 int sys_setpgid(struct thread *, struct setpgid_args *);
1913 int sys_setitimer(struct thread *, struct setitimer_args *);
1914 int sys_swapon(struct thread *, struct swapon_args *);
1915 int sys_getitimer(struct thread *, struct getitimer_args *);
1916 int sys_getdtablesize(struct thread *, struct getdtablesize_args *);
1917 int sys_dup2(struct thread *, struct dup2_args *);
1918 int sys_fcntl(struct thread *, struct fcntl_args *);
1919 int sys_select(struct thread *, struct select_args *);
1920 int sys_fsync(struct thread *, struct fsync_args *);
1921 int sys_setpriority(struct thread *, struct setpriority_args *);
1922 int sys_socket(struct thread *, struct socket_args *);
1923 int sys_connect(struct thread *, struct connect_args *);
1924 int sys_getpriority(struct thread *, struct getpriority_args *);
1925 int sys_bind(struct thread *, struct bind_args *);
1926 int sys_setsockopt(struct thread *, struct setsockopt_args *);
1927 int sys_listen(struct thread *, struct listen_args *);
1928 int sys_gettimeofday(struct thread *, struct gettimeofday_args *);
1929 int sys_getrusage(struct thread *, struct getrusage_args *);
1930 int sys_getsockopt(struct thread *, struct getsockopt_args *);
1931 int sys_readv(struct thread *, struct readv_args *);
1932 int sys_writev(struct thread *, struct writev_args *);
1933 int sys_settimeofday(struct thread *, struct settimeofday_args *);
1934 int sys_fchown(struct thread *, struct fchown_args *);
1935 int sys_fchmod(struct thread *, struct fchmod_args *);
1936 int sys_setreuid(struct thread *, struct setreuid_args *);
1937 int sys_setregid(struct thread *, struct setregid_args *);
1938 int sys_rename(struct thread *, struct rename_args *);
1939 int sys_flock(struct thread *, struct flock_args *);
1940 int sys_mkfifo(struct thread *, struct mkfifo_args *);
1941 int sys_sendto(struct thread *, struct sendto_args *);
1942 int sys_shutdown(struct thread *, struct shutdown_args *);
1943 int sys_socketpair(struct thread *, struct socketpair_args *);
1944 int sys_mkdir(struct thread *, struct mkdir_args *);
1945 int sys_rmdir(struct thread *, struct rmdir_args *);
1946 int sys_utimes(struct thread *, struct utimes_args *);
1947 int sys_adjtime(struct thread *, struct adjtime_args *);
1948 int sys_setsid(struct thread *, struct setsid_args *);
1949 int sys_quotactl(struct thread *, struct quotactl_args *);
1950 int sys_nlm_syscall(struct thread *, struct nlm_syscall_args *);
1951 int sys_nfssvc(struct thread *, struct nfssvc_args *);
1952 int sys_lgetfh(struct thread *, struct lgetfh_args *);
1953 int sys_getfh(struct thread *, struct getfh_args *);
1954 int sysarch(struct thread *, struct sysarch_args *);
1955 int sys_rtprio(struct thread *, struct rtprio_args *);
1956 int sys_semsys(struct thread *, struct semsys_args *);
1957 int sys_msgsys(struct thread *, struct msgsys_args *);
1958 int sys_shmsys(struct thread *, struct shmsys_args *);
1959 int sys_setfib(struct thread *, struct setfib_args *);
1960 int sys_ntp_adjtime(struct thread *, struct ntp_adjtime_args *);
1961 int sys_setgid(struct thread *, struct setgid_args *);
1962 int sys_setegid(struct thread *, struct setegid_args *);
1963 int sys_seteuid(struct thread *, struct seteuid_args *);
1964 int sys_pathconf(struct thread *, struct pathconf_args *);
1965 int sys_fpathconf(struct thread *, struct fpathconf_args *);
1966 int sys_getrlimit(struct thread *, struct __getrlimit_args *);
1967 int sys_setrlimit(struct thread *, struct __setrlimit_args *);
1968 int sys___sysctl(struct thread *, struct sysctl_args *);
1969 int sys_mlock(struct thread *, struct mlock_args *);
1970 int sys_munlock(struct thread *, struct munlock_args *);
1971 int sys_undelete(struct thread *, struct undelete_args *);
1972 int sys_futimes(struct thread *, struct futimes_args *);
1973 int sys_getpgid(struct thread *, struct getpgid_args *);
1974 int sys_poll(struct thread *, struct poll_args *);
1975 int sys_semget(struct thread *, struct semget_args *);
1976 int sys_semop(struct thread *, struct semop_args *);
1977 int sys_msgget(struct thread *, struct msgget_args *);
1978 int sys_msgsnd(struct thread *, struct msgsnd_args *);
1979 int sys_msgrcv(struct thread *, struct msgrcv_args *);
1980 int sys_shmat(struct thread *, struct shmat_args *);
1981 int sys_shmdt(struct thread *, struct shmdt_args *);
1982 int sys_shmget(struct thread *, struct shmget_args *);
1983 int sys_clock_gettime(struct thread *, struct clock_gettime_args *);
1984 int sys_clock_settime(struct thread *, struct clock_settime_args *);
1985 int sys_clock_getres(struct thread *, struct clock_getres_args *);
1986 int sys_ktimer_create(struct thread *, struct ktimer_create_args *);
1987 int sys_ktimer_delete(struct thread *, struct ktimer_delete_args *);
1988 int sys_ktimer_settime(struct thread *, struct ktimer_settime_args *);
1989 int sys_ktimer_gettime(struct thread *, struct ktimer_gettime_args *);
1990 int sys_ktimer_getoverrun(struct thread *, struct ktimer_getoverrun_args *);
1991 int sys_nanosleep(struct thread *, struct nanosleep_args *);
1992 int sys_ffclock_getcounter(struct thread *, struct ffclock_getcounter_args *);
1993 int sys_ffclock_setestimate(struct thread *, struct ffclock_setestimate_args *);
1994 int sys_ffclock_getestimate(struct thread *, struct ffclock_getestimate_args *);
1995 int sys_clock_nanosleep(struct thread *, struct clock_nanosleep_args *);
1996 int sys_clock_getcpuclockid2(struct thread *, struct clock_getcpuclockid2_args *);
1997 int sys_ntp_gettime(struct thread *, struct ntp_gettime_args *);
1998 int sys_minherit(struct thread *, struct minherit_args *);
1999 int sys_rfork(struct thread *, struct rfork_args *);
2000 int sys_issetugid(struct thread *, struct issetugid_args *);
2001 int sys_lchown(struct thread *, struct lchown_args *);
2002 int sys_aio_read(struct thread *, struct aio_read_args *);
2003 int sys_aio_write(struct thread *, struct aio_write_args *);
2004 int sys_lio_listio(struct thread *, struct lio_listio_args *);
2005 int sys_lchmod(struct thread *, struct lchmod_args *);
2006 int sys_lutimes(struct thread *, struct lutimes_args *);
2007 int sys_preadv(struct thread *, struct preadv_args *);
2008 int sys_pwritev(struct thread *, struct pwritev_args *);
2009 int sys_fhopen(struct thread *, struct fhopen_args *);
2010 int sys_modnext(struct thread *, struct modnext_args *);
2011 int sys_modstat(struct thread *, struct modstat_args *);
2012 int sys_modfnext(struct thread *, struct modfnext_args *);
2013 int sys_modfind(struct thread *, struct modfind_args *);
2014 int sys_kldload(struct thread *, struct kldload_args *);
2015 int sys_kldunload(struct thread *, struct kldunload_args *);
2016 int sys_kldfind(struct thread *, struct kldfind_args *);
2017 int sys_kldnext(struct thread *, struct kldnext_args *);
2018 int sys_kldstat(struct thread *, struct kldstat_args *);
2019 int sys_kldfirstmod(struct thread *, struct kldfirstmod_args *);
2020 int sys_getsid(struct thread *, struct getsid_args *);
2021 int sys_setresuid(struct thread *, struct setresuid_args *);
2022 int sys_setresgid(struct thread *, struct setresgid_args *);
2023 int sys_aio_return(struct thread *, struct aio_return_args *);
2024 int sys_aio_suspend(struct thread *, struct aio_suspend_args *);
2025 int sys_aio_cancel(struct thread *, struct aio_cancel_args *);
2026 int sys_aio_error(struct thread *, struct aio_error_args *);
2027 int sys_yield(struct thread *, struct yield_args *);
2028 int sys_mlockall(struct thread *, struct mlockall_args *);
2029 int sys_munlockall(struct thread *, struct munlockall_args *);
2030 int sys___getcwd(struct thread *, struct __getcwd_args *);
2031 int sys_sched_setparam(struct thread *, struct sched_setparam_args *);
2032 int sys_sched_getparam(struct thread *, struct sched_getparam_args *);
2033 int sys_sched_setscheduler(struct thread *, struct sched_setscheduler_args *);
2034 int sys_sched_getscheduler(struct thread *, struct sched_getscheduler_args *);
2035 int sys_sched_yield(struct thread *, struct sched_yield_args *);
2036 int sys_sched_get_priority_max(struct thread *, struct sched_get_priority_max_args *);
2037 int sys_sched_get_priority_min(struct thread *, struct sched_get_priority_min_args *);
2038 int sys_sched_rr_get_interval(struct thread *, struct sched_rr_get_interval_args *);
2039 int sys_utrace(struct thread *, struct utrace_args *);
2040 int sys_kldsym(struct thread *, struct kldsym_args *);
2041 int sys_jail(struct thread *, struct jail_args *);
2042 int sys_nnpfs_syscall(struct thread *, struct nnpfs_syscall_args *);
2043 int sys_sigprocmask(struct thread *, struct sigprocmask_args *);
2044 int sys_sigsuspend(struct thread *, struct sigsuspend_args *);
2045 int sys_sigpending(struct thread *, struct sigpending_args *);
2046 int sys_sigtimedwait(struct thread *, struct sigtimedwait_args *);
2047 int sys_sigwaitinfo(struct thread *, struct sigwaitinfo_args *);
2048 int sys___acl_get_file(struct thread *, struct __acl_get_file_args *);
2049 int sys___acl_set_file(struct thread *, struct __acl_set_file_args *);
2050 int sys___acl_get_fd(struct thread *, struct __acl_get_fd_args *);
2051 int sys___acl_set_fd(struct thread *, struct __acl_set_fd_args *);
2052 int sys___acl_delete_file(struct thread *, struct __acl_delete_file_args *);
2053 int sys___acl_delete_fd(struct thread *, struct __acl_delete_fd_args *);
2054 int sys___acl_aclcheck_file(struct thread *, struct __acl_aclcheck_file_args *);
2055 int sys___acl_aclcheck_fd(struct thread *, struct __acl_aclcheck_fd_args *);
2056 int sys_extattrctl(struct thread *, struct extattrctl_args *);
2057 int sys_extattr_set_file(struct thread *, struct extattr_set_file_args *);
2058 int sys_extattr_get_file(struct thread *, struct extattr_get_file_args *);
2059 int sys_extattr_delete_file(struct thread *, struct extattr_delete_file_args *);
2060 int sys_aio_waitcomplete(struct thread *, struct aio_waitcomplete_args *);
2061 int sys_getresuid(struct thread *, struct getresuid_args *);
2062 int sys_getresgid(struct thread *, struct getresgid_args *);
2063 int sys_kqueue(struct thread *, struct kqueue_args *);
2064 int sys_extattr_set_fd(struct thread *, struct extattr_set_fd_args *);
2065 int sys_extattr_get_fd(struct thread *, struct extattr_get_fd_args *);
2066 int sys_extattr_delete_fd(struct thread *, struct extattr_delete_fd_args *);
2067 int sys___setugid(struct thread *, struct __setugid_args *);
2068 int sys_eaccess(struct thread *, struct eaccess_args *);
2069 int sys_afs3_syscall(struct thread *, struct afs3_syscall_args *);
2070 int sys_nmount(struct thread *, struct nmount_args *);
2071 int sys___mac_get_proc(struct thread *, struct __mac_get_proc_args *);
2072 int sys___mac_set_proc(struct thread *, struct __mac_set_proc_args *);
2073 int sys___mac_get_fd(struct thread *, struct __mac_get_fd_args *);
2074 int sys___mac_get_file(struct thread *, struct __mac_get_file_args *);
2075 int sys___mac_set_fd(struct thread *, struct __mac_set_fd_args *);
2076 int sys___mac_set_file(struct thread *, struct __mac_set_file_args *);
2077 int sys_kenv(struct thread *, struct kenv_args *);
2078 int sys_lchflags(struct thread *, struct lchflags_args *);
2079 int sys_uuidgen(struct thread *, struct uuidgen_args *);
2080 int sys_sendfile(struct thread *, struct sendfile_args *);
2081 int sys_mac_syscall(struct thread *, struct mac_syscall_args *);
2082 int sys_ksem_close(struct thread *, struct ksem_close_args *);
2083 int sys_ksem_post(struct thread *, struct ksem_post_args *);
2084 int sys_ksem_wait(struct thread *, struct ksem_wait_args *);
2085 int sys_ksem_trywait(struct thread *, struct ksem_trywait_args *);
2086 int sys_ksem_init(struct thread *, struct ksem_init_args *);
2087 int sys_ksem_open(struct thread *, struct ksem_open_args *);
2088 int sys_ksem_unlink(struct thread *, struct ksem_unlink_args *);
2089 int sys_ksem_getvalue(struct thread *, struct ksem_getvalue_args *);
2090 int sys_ksem_destroy(struct thread *, struct ksem_destroy_args *);
2091 int sys___mac_get_pid(struct thread *, struct __mac_get_pid_args *);
2092 int sys___mac_get_link(struct thread *, struct __mac_get_link_args *);
2093 int sys___mac_set_link(struct thread *, struct __mac_set_link_args *);
2094 int sys_extattr_set_link(struct thread *, struct extattr_set_link_args *);
2095 int sys_extattr_get_link(struct thread *, struct extattr_get_link_args *);
2096 int sys_extattr_delete_link(struct thread *, struct extattr_delete_link_args *);
2097 int sys___mac_execve(struct thread *, struct __mac_execve_args *);
2098 int sys_sigaction(struct thread *, struct sigaction_args *);
2099 int sys_sigreturn(struct thread *, struct sigreturn_args *);
2100 int sys_getcontext(struct thread *, struct getcontext_args *);
2101 int sys_setcontext(struct thread *, struct setcontext_args *);
2102 int sys_swapcontext(struct thread *, struct swapcontext_args *);
2103 int sys_swapoff(struct thread *, struct swapoff_args *);
2104 int sys___acl_get_link(struct thread *, struct __acl_get_link_args *);
2105 int sys___acl_set_link(struct thread *, struct __acl_set_link_args *);
2106 int sys___acl_delete_link(struct thread *, struct __acl_delete_link_args *);
2107 int sys___acl_aclcheck_link(struct thread *, struct __acl_aclcheck_link_args *);
2108 int sys_sigwait(struct thread *, struct sigwait_args *);
2109 int sys_thr_create(struct thread *, struct thr_create_args *);
2110 int sys_thr_exit(struct thread *, struct thr_exit_args *);
2111 int sys_thr_self(struct thread *, struct thr_self_args *);
2112 int sys_thr_kill(struct thread *, struct thr_kill_args *);
2113 int sys_jail_attach(struct thread *, struct jail_attach_args *);
2114 int sys_extattr_list_fd(struct thread *, struct extattr_list_fd_args *);
2115 int sys_extattr_list_file(struct thread *, struct extattr_list_file_args *);
2116 int sys_extattr_list_link(struct thread *, struct extattr_list_link_args *);
2117 int sys_ksem_timedwait(struct thread *, struct ksem_timedwait_args *);
2118 int sys_thr_suspend(struct thread *, struct thr_suspend_args *);
2119 int sys_thr_wake(struct thread *, struct thr_wake_args *);
2120 int sys_kldunloadf(struct thread *, struct kldunloadf_args *);
2121 int sys_audit(struct thread *, struct audit_args *);
2122 int sys_auditon(struct thread *, struct auditon_args *);
2123 int sys_getauid(struct thread *, struct getauid_args *);
2124 int sys_setauid(struct thread *, struct setauid_args *);
2125 int sys_getaudit(struct thread *, struct getaudit_args *);
2126 int sys_setaudit(struct thread *, struct setaudit_args *);
2127 int sys_getaudit_addr(struct thread *, struct getaudit_addr_args *);
2128 int sys_setaudit_addr(struct thread *, struct setaudit_addr_args *);
2129 int sys_auditctl(struct thread *, struct auditctl_args *);
2130 int sys__umtx_op(struct thread *, struct _umtx_op_args *);
2131 int sys_thr_new(struct thread *, struct thr_new_args *);
2132 int sys_sigqueue(struct thread *, struct sigqueue_args *);
2133 int sys_kmq_open(struct thread *, struct kmq_open_args *);
2134 int sys_kmq_setattr(struct thread *, struct kmq_setattr_args *);
2135 int sys_kmq_timedreceive(struct thread *, struct kmq_timedreceive_args *);
2136 int sys_kmq_timedsend(struct thread *, struct kmq_timedsend_args *);
2137 int sys_kmq_notify(struct thread *, struct kmq_notify_args *);
2138 int sys_kmq_unlink(struct thread *, struct kmq_unlink_args *);
2139 int sys_abort2(struct thread *, struct abort2_args *);
2140 int sys_thr_set_name(struct thread *, struct thr_set_name_args *);
2141 int sys_aio_fsync(struct thread *, struct aio_fsync_args *);
2142 int sys_rtprio_thread(struct thread *, struct rtprio_thread_args *);
2143 int sys_sctp_peeloff(struct thread *, struct sctp_peeloff_args *);
2144 int sys_sctp_generic_sendmsg(struct thread *, struct sctp_generic_sendmsg_args *);
2145 int sys_sctp_generic_sendmsg_iov(struct thread *, struct sctp_generic_sendmsg_iov_args *);
2146 int sys_sctp_generic_recvmsg(struct thread *, struct sctp_generic_recvmsg_args *);
2147 int sys_pread(struct thread *, struct pread_args *);
2148 int sys_pwrite(struct thread *, struct pwrite_args *);
2149 int sys_mmap(struct thread *, struct mmap_args *);
2150 int sys_lseek(struct thread *, struct lseek_args *);
2151 int sys_truncate(struct thread *, struct truncate_args *);
2152 int sys_ftruncate(struct thread *, struct ftruncate_args *);
2153 int sys_thr_kill2(struct thread *, struct thr_kill2_args *);
2154 int sys_shm_unlink(struct thread *, struct shm_unlink_args *);
2155 int sys_cpuset(struct thread *, struct cpuset_args *);
2156 int sys_cpuset_setid(struct thread *, struct cpuset_setid_args *);
2157 int sys_cpuset_getid(struct thread *, struct cpuset_getid_args *);
2158 int sys_cpuset_getaffinity(struct thread *, struct cpuset_getaffinity_args *);
2159 int sys_cpuset_setaffinity(struct thread *, struct cpuset_setaffinity_args *);
2160 int sys_faccessat(struct thread *, struct faccessat_args *);
2161 int sys_fchmodat(struct thread *, struct fchmodat_args *);
2162 int sys_fchownat(struct thread *, struct fchownat_args *);
2163 int sys_fexecve(struct thread *, struct fexecve_args *);
2164 int sys_futimesat(struct thread *, struct futimesat_args *);
2165 int sys_linkat(struct thread *, struct linkat_args *);
2166 int sys_mkdirat(struct thread *, struct mkdirat_args *);
2167 int sys_mkfifoat(struct thread *, struct mkfifoat_args *);
2168 int sys_openat(struct thread *, struct openat_args *);
2169 int sys_readlinkat(struct thread *, struct readlinkat_args *);
2170 int sys_renameat(struct thread *, struct renameat_args *);
2171 int sys_symlinkat(struct thread *, struct symlinkat_args *);
2172 int sys_unlinkat(struct thread *, struct unlinkat_args *);
2173 int sys_posix_openpt(struct thread *, struct posix_openpt_args *);
2174 int sys_gssd_syscall(struct thread *, struct gssd_syscall_args *);
2175 int sys_jail_get(struct thread *, struct jail_get_args *);
2176 int sys_jail_set(struct thread *, struct jail_set_args *);
2177 int sys_jail_remove(struct thread *, struct jail_remove_args *);
2178 int sys___semctl(struct thread *, struct __semctl_args *);
2179 int sys_msgctl(struct thread *, struct msgctl_args *);
2180 int sys_shmctl(struct thread *, struct shmctl_args *);
2181 int sys_lpathconf(struct thread *, struct lpathconf_args *);
2182 int sys___cap_rights_get(struct thread *, struct __cap_rights_get_args *);
2183 int sys_cap_enter(struct thread *, struct cap_enter_args *);
2184 int sys_cap_getmode(struct thread *, struct cap_getmode_args *);
2185 int sys_pdfork(struct thread *, struct pdfork_args *);
2186 int sys_pdkill(struct thread *, struct pdkill_args *);
2187 int sys_pdgetpid(struct thread *, struct pdgetpid_args *);
2188 int sys_pselect(struct thread *, struct pselect_args *);
2189 int sys_getloginclass(struct thread *, struct getloginclass_args *);
2190 int sys_setloginclass(struct thread *, struct setloginclass_args *);
2191 int sys_rctl_get_racct(struct thread *, struct rctl_get_racct_args *);
2192 int sys_rctl_get_rules(struct thread *, struct rctl_get_rules_args *);
2193 int sys_rctl_get_limits(struct thread *, struct rctl_get_limits_args *);
2194 int sys_rctl_add_rule(struct thread *, struct rctl_add_rule_args *);
2195 int sys_rctl_remove_rule(struct thread *, struct rctl_remove_rule_args *);
2196 int sys_posix_fallocate(struct thread *, struct posix_fallocate_args *);
2197 int sys_posix_fadvise(struct thread *, struct posix_fadvise_args *);
2198 int sys_wait6(struct thread *, struct wait6_args *);
2199 int sys_cap_rights_limit(struct thread *, struct cap_rights_limit_args *);
2200 int sys_cap_ioctls_limit(struct thread *, struct cap_ioctls_limit_args *);
2201 int sys_cap_ioctls_get(struct thread *, struct cap_ioctls_get_args *);
2202 int sys_cap_fcntls_limit(struct thread *, struct cap_fcntls_limit_args *);
2203 int sys_cap_fcntls_get(struct thread *, struct cap_fcntls_get_args *);
2204 int sys_bindat(struct thread *, struct bindat_args *);
2205 int sys_connectat(struct thread *, struct connectat_args *);
2206 int sys_chflagsat(struct thread *, struct chflagsat_args *);
2207 int sys_accept4(struct thread *, struct accept4_args *);
2208 int sys_pipe2(struct thread *, struct pipe2_args *);
2209 int sys_aio_mlock(struct thread *, struct aio_mlock_args *);
2210 int sys_procctl(struct thread *, struct procctl_args *);
2211 int sys_ppoll(struct thread *, struct ppoll_args *);
2212 int sys_futimens(struct thread *, struct futimens_args *);
2213 int sys_utimensat(struct thread *, struct utimensat_args *);
2214 int sys_fdatasync(struct thread *, struct fdatasync_args *);
2215 int sys_fstat(struct thread *, struct fstat_args *);
2216 int sys_fstatat(struct thread *, struct fstatat_args *);
2217 int sys_fhstat(struct thread *, struct fhstat_args *);
2218 int sys_getdirentries(struct thread *, struct getdirentries_args *);
2219 int sys_statfs(struct thread *, struct statfs_args *);
2220 int sys_fstatfs(struct thread *, struct fstatfs_args *);
2221 int sys_getfsstat(struct thread *, struct getfsstat_args *);
2222 int sys_fhstatfs(struct thread *, struct fhstatfs_args *);
2223 int sys_mknodat(struct thread *, struct mknodat_args *);
2224 int sys_kevent(struct thread *, struct kevent_args *);
2225 int sys_cpuset_getdomain(struct thread *, struct cpuset_getdomain_args *);
2226 int sys_cpuset_setdomain(struct thread *, struct cpuset_setdomain_args *);
2227 int sys_getrandom(struct thread *, struct getrandom_args *);
2228 int sys_getfhat(struct thread *, struct getfhat_args *);
2229 int sys_fhlink(struct thread *, struct fhlink_args *);
2230 int sys_fhlinkat(struct thread *, struct fhlinkat_args *);
2231 int sys_fhreadlink(struct thread *, struct fhreadlink_args *);
2232 int sys_funlinkat(struct thread *, struct funlinkat_args *);
2233 int sys_copy_file_range(struct thread *, struct copy_file_range_args *);
2234 int sys___sysctlbyname(struct thread *, struct __sysctlbyname_args *);
2235 int sys_shm_open2(struct thread *, struct shm_open2_args *);
2236 int sys_shm_rename(struct thread *, struct shm_rename_args *);
2237 int sys_sigfastblock(struct thread *, struct sigfastblock_args *);
2238 int sys___realpathat(struct thread *, struct __realpathat_args *);
2239 int sys_close_range(struct thread *, struct close_range_args *);
2240 int sys_rpctls_syscall(struct thread *, struct rpctls_syscall_args *);
2241 int sys___specialfd(struct thread *, struct __specialfd_args *);
2242 int sys_aio_writev(struct thread *, struct aio_writev_args *);
2243 int sys_aio_readv(struct thread *, struct aio_readv_args *);
2381 int ocreat(struct thread *, struct ocreat_args *);
2382 int olseek(struct thread *, struct olseek_args *);
2383 int ostat(struct thread *, struct ostat_args *);
2384 int olstat(struct thread *, struct olstat_args *);
2385 int osigaction(struct thread *, struct osigaction_args *);
2386 int osigprocmask(struct thread *, struct osigprocmask_args *);
2387 int osigpending(struct thread *, struct osigpending_args *);
2388 int ofstat(struct thread *, struct ofstat_args *);
2389 int ogetkerninfo(struct thread *, struct ogetkerninfo_args *);
2390 int ogetpagesize(struct thread *, struct ogetpagesize_args *);
2391 int ommap(struct thread *, struct ommap_args *);
2392 int owait(struct thread *, struct owait_args *);
2393 int ogethostname(struct thread *, struct ogethostname_args *);
2394 int osethostname(struct thread *, struct osethostname_args *);
2395 int oaccept(struct thread *, struct oaccept_args *);
2396 int osend(struct thread *, struct osend_args *);
2397 int orecv(struct thread *, struct orecv_args *);
2398 int osigreturn(struct thread *, struct osigreturn_args *);
2399 int osigvec(struct thread *, struct osigvec_args *);
2400 int osigblock(struct thread *, struct osigblock_args *);
2401 int osigsetmask(struct thread *, struct osigsetmask_args *);
2402 int osigsuspend(struct thread *, struct osigsuspend_args *);
2403 int osigstack(struct thread *, struct osigstack_args *);
2404 int orecvmsg(struct thread *, struct orecvmsg_args *);
2405 int osendmsg(struct thread *, struct osendmsg_args *);
2406 int orecvfrom(struct thread *, struct recvfrom_args *);
2407 int otruncate(struct thread *, struct otruncate_args *);
2408 int oftruncate(struct thread *, struct oftruncate_args *);
2409 int ogetpeername(struct thread *, struct ogetpeername_args *);
2410 int ogethostid(struct thread *, struct ogethostid_args *);
2411 int osethostid(struct thread *, struct osethostid_args *);
2412 int ogetrlimit(struct thread *, struct ogetrlimit_args *);
2413 int osetrlimit(struct thread *, struct osetrlimit_args *);
2414 int okillpg(struct thread *, struct okillpg_args *);
2415 int oquota(struct thread *, struct oquota_args *);
2416 int ogetsockname(struct thread *, struct getsockname_args *);
2417 int ogetdirentries(struct thread *, struct ogetdirentries_args *);
2469 int freebsd4_getfsstat(struct thread *, struct freebsd4_getfsstat_args *);
2470 int freebsd4_statfs(struct thread *, struct freebsd4_statfs_args *);
2471 int freebsd4_fstatfs(struct thread *, struct freebsd4_fstatfs_args *);
2472 int freebsd4_getdomainname(struct thread *, struct freebsd4_getdomainname_args *);
2473 int freebsd4_setdomainname(struct thread *, struct freebsd4_setdomainname_args *);
2474 int freebsd4_uname(struct thread *, struct freebsd4_uname_args *);
2475 int freebsd4_fhstatfs(struct thread *, struct freebsd4_fhstatfs_args *);
2476 int freebsd4_sendfile(struct thread *, struct freebsd4_sendfile_args *);
2477 int freebsd4_sigaction(struct thread *, struct freebsd4_sigaction_args *);
2478 int freebsd4_sigreturn(struct thread *, struct freebsd4_sigreturn_args *);
2536 int freebsd6_pread(struct thread *, struct freebsd6_pread_args *);
2537 int freebsd6_pwrite(struct thread *, struct freebsd6_pwrite_args *);
2538 int freebsd6_mmap(struct thread *, struct freebsd6_mmap_args *);
2539 int freebsd6_lseek(struct thread *, struct freebsd6_lseek_args *);
2540 int freebsd6_truncate(struct thread *, struct freebsd6_truncate_args *);
2541 int freebsd6_ftruncate(struct thread *, struct freebsd6_ftruncate_args *);
2542 int freebsd6_aio_read(struct thread *, struct freebsd6_aio_read_args *);
2543 int freebsd6_aio_write(struct thread *, struct freebsd6_aio_write_args *);
2544 int freebsd6_lio_listio(struct thread *, struct freebsd6_lio_listio_args *);
2567 int freebsd7___semctl(struct thread *, struct freebsd7___semctl_args *);
2568 int freebsd7_msgctl(struct thread *, struct freebsd7_msgctl_args *);
2569 int freebsd7_shmctl(struct thread *, struct freebsd7_shmctl_args *);
2576 int freebsd10_pipe(struct thread *, struct freebsd10_pipe_args *);
2667 int freebsd11_mknod(struct thread *, struct freebsd11_mknod_args *);
2668 int freebsd11_vadvise(struct thread *, struct freebsd11_vadvise_args *);
2669 int freebsd11_stat(struct thread *, struct freebsd11_stat_args *);
2670 int freebsd11_fstat(struct thread *, struct freebsd11_fstat_args *);
2671 int freebsd11_lstat(struct thread *, struct freebsd11_lstat_args *);
2672 int freebsd11_getdirentries(struct thread *, struct freebsd11_getdirentries_args *);
2673 int freebsd11_getdents(struct thread *, struct freebsd11_getdents_args *);
2674 int freebsd11_nstat(struct thread *, struct freebsd11_nstat_args *);
2675 int freebsd11_nfstat(struct thread *, struct freebsd11_nfstat_args *);
2676 int freebsd11_nlstat(struct thread *, struct freebsd11_nlstat_args *);
2677 int freebsd11_fhstat(struct thread *, struct freebsd11_fhstat_args *);
2678 int freebsd11_kevent(struct thread *, struct freebsd11_kevent_args *);
2679 int freebsd11_getfsstat(struct thread *, struct freebsd11_getfsstat_args *);
2680 int freebsd11_statfs(struct thread *, struct freebsd11_statfs_args *);
2681 int freebsd11_fstatfs(struct thread *, struct freebsd11_fstatfs_args *);
2682 int freebsd11_fhstatfs(struct thread *, struct freebsd11_fhstatfs_args *);
2683 int freebsd11_fstatat(struct thread *, struct freebsd11_fstatat_args *);
2684 int freebsd11_mknodat(struct thread *, struct freebsd11_mknodat_args *);
2699 int freebsd12_shm_open(struct thread *, struct freebsd12_shm_open_args *);
2700 int freebsd12_closefrom(struct thread *, struct freebsd12_closefrom_args *);