summaryrefslogtreecommitdiffstats
path: root/sys/sys/sysproto.h
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-03-19 20:18:42 +0000
committeralfred <alfred@FreeBSD.org>2002-03-19 20:18:42 +0000
commit3b2d03b60a11ce28e58a87212bcccedd306f2c81 (patch)
tree233cfc0a5493dd5fb7407b0b8be25bcdc426772d /sys/sys/sysproto.h
parent3f502bc0e38e05c234115d22c39f02e6a4ab4fcb (diff)
downloadFreeBSD-src-3b2d03b60a11ce28e58a87212bcccedd306f2c81.zip
FreeBSD-src-3b2d03b60a11ce28e58a87212bcccedd306f2c81.tar.gz
Remove __P
Diffstat (limited to 'sys/sys/sysproto.h')
-rw-r--r--sys/sys/sysproto.h570
1 files changed, 285 insertions, 285 deletions
diff --git a/sys/sys/sysproto.h b/sys/sys/sysproto.h
index 2a4d2cb..83f3b27 100644
--- a/sys/sys/sysproto.h
+++ b/sys/sys/sysproto.h
@@ -1105,255 +1105,255 @@ struct thread_wakeup_args {
struct kse_yield_args {
register_t dummy;
};
-int nosys __P((struct thread *, struct nosys_args *));
-void sys_exit __P((struct thread *, struct sys_exit_args *));
-int fork __P((struct thread *, struct fork_args *));
-int read __P((struct thread *, struct read_args *));
-int write __P((struct thread *, struct write_args *));
-int open __P((struct thread *, struct open_args *));
-int close __P((struct thread *, struct close_args *));
-int wait4 __P((struct thread *, struct wait_args *));
-int link __P((struct thread *, struct link_args *));
-int unlink __P((struct thread *, struct unlink_args *));
-int chdir __P((struct thread *, struct chdir_args *));
-int fchdir __P((struct thread *, struct fchdir_args *));
-int mknod __P((struct thread *, struct mknod_args *));
-int chmod __P((struct thread *, struct chmod_args *));
-int chown __P((struct thread *, struct chown_args *));
-int obreak __P((struct thread *, struct obreak_args *));
-int getfsstat __P((struct thread *, struct getfsstat_args *));
-int getpid __P((struct thread *, struct getpid_args *));
-int mount __P((struct thread *, struct mount_args *));
-int unmount __P((struct thread *, struct unmount_args *));
-int setuid __P((struct thread *, struct setuid_args *));
-int getuid __P((struct thread *, struct getuid_args *));
-int geteuid __P((struct thread *, struct geteuid_args *));
-int ptrace __P((struct thread *, struct ptrace_args *));
-int recvmsg __P((struct thread *, struct recvmsg_args *));
-int sendmsg __P((struct thread *, struct sendmsg_args *));
-int recvfrom __P((struct thread *, struct recvfrom_args *));
-int accept __P((struct thread *, struct accept_args *));
-int getpeername __P((struct thread *, struct getpeername_args *));
-int getsockname __P((struct thread *, struct getsockname_args *));
-int access __P((struct thread *, struct access_args *));
-int chflags __P((struct thread *, struct chflags_args *));
-int fchflags __P((struct thread *, struct fchflags_args *));
-int sync __P((struct thread *, struct sync_args *));
-int kill __P((struct thread *, struct kill_args *));
-int getppid __P((struct thread *, struct getppid_args *));
-int dup __P((struct thread *, struct dup_args *));
-int pipe __P((struct thread *, struct pipe_args *));
-int getegid __P((struct thread *, struct getegid_args *));
-int profil __P((struct thread *, struct profil_args *));
-int ktrace __P((struct thread *, struct ktrace_args *));
-int getgid __P((struct thread *, struct getgid_args *));
-int getlogin __P((struct thread *, struct getlogin_args *));
-int setlogin __P((struct thread *, struct setlogin_args *));
-int acct __P((struct thread *, struct acct_args *));
-int sigaltstack __P((struct thread *, struct sigaltstack_args *));
-int ioctl __P((struct thread *, struct ioctl_args *));
-int reboot __P((struct thread *, struct reboot_args *));
-int revoke __P((struct thread *, struct revoke_args *));
-int symlink __P((struct thread *, struct symlink_args *));
-int readlink __P((struct thread *, struct readlink_args *));
-int execve __P((struct thread *, struct execve_args *));
-int umask __P((struct thread *, struct umask_args *));
-int chroot __P((struct thread *, struct chroot_args *));
-int msync __P((struct thread *, struct msync_args *));
-int vfork __P((struct thread *, struct vfork_args *));
-int sbrk __P((struct thread *, struct sbrk_args *));
-int sstk __P((struct thread *, struct sstk_args *));
-int ovadvise __P((struct thread *, struct ovadvise_args *));
-int munmap __P((struct thread *, struct munmap_args *));
-int mprotect __P((struct thread *, struct mprotect_args *));
-int madvise __P((struct thread *, struct madvise_args *));
-int mincore __P((struct thread *, struct mincore_args *));
-int getgroups __P((struct thread *, struct getgroups_args *));
-int setgroups __P((struct thread *, struct setgroups_args *));
-int getpgrp __P((struct thread *, struct getpgrp_args *));
-int setpgid __P((struct thread *, struct setpgid_args *));
-int setitimer __P((struct thread *, struct setitimer_args *));
-int swapon __P((struct thread *, struct swapon_args *));
-int getitimer __P((struct thread *, struct getitimer_args *));
-int getdtablesize __P((struct thread *, struct getdtablesize_args *));
-int dup2 __P((struct thread *, struct dup2_args *));
-int fcntl __P((struct thread *, struct fcntl_args *));
-int select __P((struct thread *, struct select_args *));
-int fsync __P((struct thread *, struct fsync_args *));
-int setpriority __P((struct thread *, struct setpriority_args *));
-int socket __P((struct thread *, struct socket_args *));
-int connect __P((struct thread *, struct connect_args *));
-int getpriority __P((struct thread *, struct getpriority_args *));
-int osigreturn __P((struct thread *, struct osigreturn_args *));
-int bind __P((struct thread *, struct bind_args *));
-int setsockopt __P((struct thread *, struct setsockopt_args *));
-int listen __P((struct thread *, struct listen_args *));
-int gettimeofday __P((struct thread *, struct gettimeofday_args *));
-int getrusage __P((struct thread *, struct getrusage_args *));
-int getsockopt __P((struct thread *, struct getsockopt_args *));
-int readv __P((struct thread *, struct readv_args *));
-int writev __P((struct thread *, struct writev_args *));
-int settimeofday __P((struct thread *, struct settimeofday_args *));
-int fchown __P((struct thread *, struct fchown_args *));
-int fchmod __P((struct thread *, struct fchmod_args *));
-int setreuid __P((struct thread *, struct setreuid_args *));
-int setregid __P((struct thread *, struct setregid_args *));
-int rename __P((struct thread *, struct rename_args *));
-int flock __P((struct thread *, struct flock_args *));
-int mkfifo __P((struct thread *, struct mkfifo_args *));
-int sendto __P((struct thread *, struct sendto_args *));
-int shutdown __P((struct thread *, struct shutdown_args *));
-int socketpair __P((struct thread *, struct socketpair_args *));
-int mkdir __P((struct thread *, struct mkdir_args *));
-int rmdir __P((struct thread *, struct rmdir_args *));
-int utimes __P((struct thread *, struct utimes_args *));
-int adjtime __P((struct thread *, struct adjtime_args *));
-int setsid __P((struct thread *, struct setsid_args *));
-int quotactl __P((struct thread *, struct quotactl_args *));
-int nfssvc __P((struct thread *, struct nfssvc_args *));
-int statfs __P((struct thread *, struct statfs_args *));
-int fstatfs __P((struct thread *, struct fstatfs_args *));
-int getfh __P((struct thread *, struct getfh_args *));
-int getdomainname __P((struct thread *, struct getdomainname_args *));
-int setdomainname __P((struct thread *, struct setdomainname_args *));
-int uname __P((struct thread *, struct uname_args *));
-int sysarch __P((struct thread *, struct sysarch_args *));
-int rtprio __P((struct thread *, struct rtprio_args *));
-int semsys __P((struct thread *, struct semsys_args *));
-int msgsys __P((struct thread *, struct msgsys_args *));
-int shmsys __P((struct thread *, struct shmsys_args *));
-int pread __P((struct thread *, struct pread_args *));
-int pwrite __P((struct thread *, struct pwrite_args *));
-int ntp_adjtime __P((struct thread *, struct ntp_adjtime_args *));
-int setgid __P((struct thread *, struct setgid_args *));
-int setegid __P((struct thread *, struct setegid_args *));
-int seteuid __P((struct thread *, struct seteuid_args *));
-int stat __P((struct thread *, struct stat_args *));
-int fstat __P((struct thread *, struct fstat_args *));
-int lstat __P((struct thread *, struct lstat_args *));
-int pathconf __P((struct thread *, struct pathconf_args *));
-int fpathconf __P((struct thread *, struct fpathconf_args *));
-int getrlimit __P((struct thread *, struct __getrlimit_args *));
-int setrlimit __P((struct thread *, struct __setrlimit_args *));
-int getdirentries __P((struct thread *, struct getdirentries_args *));
-int mmap __P((struct thread *, struct mmap_args *));
-int lseek __P((struct thread *, struct lseek_args *));
-int truncate __P((struct thread *, struct truncate_args *));
-int ftruncate __P((struct thread *, struct ftruncate_args *));
-int __sysctl __P((struct thread *, struct sysctl_args *));
-int mlock __P((struct thread *, struct mlock_args *));
-int munlock __P((struct thread *, struct munlock_args *));
-int undelete __P((struct thread *, struct undelete_args *));
-int futimes __P((struct thread *, struct futimes_args *));
-int getpgid __P((struct thread *, struct getpgid_args *));
-int poll __P((struct thread *, struct poll_args *));
-int lkmnosys __P((struct thread *, struct nosys_args *));
-int __semctl __P((struct thread *, struct __semctl_args *));
-int semget __P((struct thread *, struct semget_args *));
-int semop __P((struct thread *, struct semop_args *));
-int msgctl __P((struct thread *, struct msgctl_args *));
-int msgget __P((struct thread *, struct msgget_args *));
-int msgsnd __P((struct thread *, struct msgsnd_args *));
-int msgrcv __P((struct thread *, struct msgrcv_args *));
-int shmat __P((struct thread *, struct shmat_args *));
-int shmctl __P((struct thread *, struct shmctl_args *));
-int shmdt __P((struct thread *, struct shmdt_args *));
-int shmget __P((struct thread *, struct shmget_args *));
-int clock_gettime __P((struct thread *, struct clock_gettime_args *));
-int clock_settime __P((struct thread *, struct clock_settime_args *));
-int clock_getres __P((struct thread *, struct clock_getres_args *));
-int nanosleep __P((struct thread *, struct nanosleep_args *));
-int minherit __P((struct thread *, struct minherit_args *));
-int rfork __P((struct thread *, struct rfork_args *));
-int openbsd_poll __P((struct thread *, struct openbsd_poll_args *));
-int issetugid __P((struct thread *, struct issetugid_args *));
-int lchown __P((struct thread *, struct lchown_args *));
-int getdents __P((struct thread *, struct getdents_args *));
-int lchmod __P((struct thread *, struct lchmod_args *));
-int lutimes __P((struct thread *, struct lutimes_args *));
-int nstat __P((struct thread *, struct nstat_args *));
-int nfstat __P((struct thread *, struct nfstat_args *));
-int nlstat __P((struct thread *, struct nlstat_args *));
-int fhstatfs __P((struct thread *, struct fhstatfs_args *));
-int fhopen __P((struct thread *, struct fhopen_args *));
-int fhstat __P((struct thread *, struct fhstat_args *));
-int modnext __P((struct thread *, struct modnext_args *));
-int modstat __P((struct thread *, struct modstat_args *));
-int modfnext __P((struct thread *, struct modfnext_args *));
-int modfind __P((struct thread *, struct modfind_args *));
-int kldload __P((struct thread *, struct kldload_args *));
-int kldunload __P((struct thread *, struct kldunload_args *));
-int kldfind __P((struct thread *, struct kldfind_args *));
-int kldnext __P((struct thread *, struct kldnext_args *));
-int kldstat __P((struct thread *, struct kldstat_args *));
-int kldfirstmod __P((struct thread *, struct kldfirstmod_args *));
-int getsid __P((struct thread *, struct getsid_args *));
-int setresuid __P((struct thread *, struct setresuid_args *));
-int setresgid __P((struct thread *, struct setresgid_args *));
-int aio_return __P((struct thread *, struct aio_return_args *));
-int aio_suspend __P((struct thread *, struct aio_suspend_args *));
-int aio_cancel __P((struct thread *, struct aio_cancel_args *));
-int aio_error __P((struct thread *, struct aio_error_args *));
-int aio_read __P((struct thread *, struct aio_read_args *));
-int aio_write __P((struct thread *, struct aio_write_args *));
-int lio_listio __P((struct thread *, struct lio_listio_args *));
-int yield __P((struct thread *, struct yield_args *));
-int mlockall __P((struct thread *, struct mlockall_args *));
-int munlockall __P((struct thread *, struct munlockall_args *));
-int __getcwd __P((struct thread *, struct __getcwd_args *));
-int sched_setparam __P((struct thread *, struct sched_setparam_args *));
-int sched_getparam __P((struct thread *, struct sched_getparam_args *));
-int sched_setscheduler __P((struct thread *, struct sched_setscheduler_args *));
-int sched_getscheduler __P((struct thread *, struct sched_getscheduler_args *));
-int sched_yield __P((struct thread *, struct sched_yield_args *));
-int sched_get_priority_max __P((struct thread *, struct sched_get_priority_max_args *));
-int sched_get_priority_min __P((struct thread *, struct sched_get_priority_min_args *));
-int sched_rr_get_interval __P((struct thread *, struct sched_rr_get_interval_args *));
-int utrace __P((struct thread *, struct utrace_args *));
-int sendfile __P((struct thread *, struct sendfile_args *));
-int kldsym __P((struct thread *, struct kldsym_args *));
-int jail __P((struct thread *, struct jail_args *));
-int sigprocmask __P((struct thread *, struct sigprocmask_args *));
-int sigsuspend __P((struct thread *, struct sigsuspend_args *));
-int sigaction __P((struct thread *, struct sigaction_args *));
-int sigpending __P((struct thread *, struct sigpending_args *));
-int sigreturn __P((struct thread *, struct sigreturn_args *));
-int __acl_get_file __P((struct thread *, struct __acl_get_file_args *));
-int __acl_set_file __P((struct thread *, struct __acl_set_file_args *));
-int __acl_get_fd __P((struct thread *, struct __acl_get_fd_args *));
-int __acl_set_fd __P((struct thread *, struct __acl_set_fd_args *));
-int __acl_delete_file __P((struct thread *, struct __acl_delete_file_args *));
-int __acl_delete_fd __P((struct thread *, struct __acl_delete_fd_args *));
-int __acl_aclcheck_file __P((struct thread *, struct __acl_aclcheck_file_args *));
-int __acl_aclcheck_fd __P((struct thread *, struct __acl_aclcheck_fd_args *));
-int extattrctl __P((struct thread *, struct extattrctl_args *));
-int extattr_set_file __P((struct thread *, struct extattr_set_file_args *));
-int extattr_get_file __P((struct thread *, struct extattr_get_file_args *));
-int extattr_delete_file __P((struct thread *, struct extattr_delete_file_args *));
-int aio_waitcomplete __P((struct thread *, struct aio_waitcomplete_args *));
-int getresuid __P((struct thread *, struct getresuid_args *));
-int getresgid __P((struct thread *, struct getresgid_args *));
-int kqueue __P((struct thread *, struct kqueue_args *));
-int kevent __P((struct thread *, struct kevent_args *));
-int __cap_get_proc __P((struct thread *, struct __cap_get_proc_args *));
-int __cap_set_proc __P((struct thread *, struct __cap_set_proc_args *));
-int __cap_get_fd __P((struct thread *, struct __cap_get_fd_args *));
-int __cap_get_file __P((struct thread *, struct __cap_get_file_args *));
-int __cap_set_fd __P((struct thread *, struct __cap_set_fd_args *));
-int __cap_set_file __P((struct thread *, struct __cap_set_file_args *));
-int lkmressys __P((struct thread *, struct nosys_args *));
-int extattr_set_fd __P((struct thread *, struct extattr_set_fd_args *));
-int extattr_get_fd __P((struct thread *, struct extattr_get_fd_args *));
-int extattr_delete_fd __P((struct thread *, struct extattr_delete_fd_args *));
-int __setugid __P((struct thread *, struct __setugid_args *));
-int nfsclnt __P((struct thread *, struct nfsclnt_args *));
-int eaccess __P((struct thread *, struct eaccess_args *));
-int nmount __P((struct thread *, struct nmount_args *));
-int kse_exit __P((struct thread *, struct kse_exit_args *));
-int kse_wakeup __P((struct thread *, struct kse_wakeup_args *));
-int kse_new __P((struct thread *, struct kse_new_args *));
-int thread_wakeup __P((struct thread *, struct thread_wakeup_args *));
-int kse_yield __P((struct thread *, struct kse_yield_args *));
+int nosys(struct thread *, struct nosys_args *);
+void sys_exit(struct thread *, struct sys_exit_args *);
+int fork(struct thread *, struct fork_args *);
+int read(struct thread *, struct read_args *);
+int write(struct thread *, struct write_args *);
+int open(struct thread *, struct open_args *);
+int close(struct thread *, struct close_args *);
+int wait4(struct thread *, struct wait_args *);
+int link(struct thread *, struct link_args *);
+int unlink(struct thread *, struct unlink_args *);
+int chdir(struct thread *, struct chdir_args *);
+int fchdir(struct thread *, struct fchdir_args *);
+int mknod(struct thread *, struct mknod_args *);
+int chmod(struct thread *, struct chmod_args *);
+int chown(struct thread *, struct chown_args *);
+int obreak(struct thread *, struct obreak_args *);
+int getfsstat(struct thread *, struct getfsstat_args *);
+int getpid(struct thread *, struct getpid_args *);
+int mount(struct thread *, struct mount_args *);
+int unmount(struct thread *, struct unmount_args *);
+int setuid(struct thread *, struct setuid_args *);
+int getuid(struct thread *, struct getuid_args *);
+int geteuid(struct thread *, struct geteuid_args *);
+int ptrace(struct thread *, struct ptrace_args *);
+int recvmsg(struct thread *, struct recvmsg_args *);
+int sendmsg(struct thread *, struct sendmsg_args *);
+int recvfrom(struct thread *, struct recvfrom_args *);
+int accept(struct thread *, struct accept_args *);
+int getpeername(struct thread *, struct getpeername_args *);
+int getsockname(struct thread *, struct getsockname_args *);
+int access(struct thread *, struct access_args *);
+int chflags(struct thread *, struct chflags_args *);
+int fchflags(struct thread *, struct fchflags_args *);
+int sync(struct thread *, struct sync_args *);
+int kill(struct thread *, struct kill_args *);
+int getppid(struct thread *, struct getppid_args *);
+int dup(struct thread *, struct dup_args *);
+int pipe(struct thread *, struct pipe_args *);
+int getegid(struct thread *, struct getegid_args *);
+int profil(struct thread *, struct profil_args *);
+int ktrace(struct thread *, struct ktrace_args *);
+int getgid(struct thread *, struct getgid_args *);
+int getlogin(struct thread *, struct getlogin_args *);
+int setlogin(struct thread *, struct setlogin_args *);
+int acct(struct thread *, struct acct_args *);
+int sigaltstack(struct thread *, struct sigaltstack_args *);
+int ioctl(struct thread *, struct ioctl_args *);
+int reboot(struct thread *, struct reboot_args *);
+int revoke(struct thread *, struct revoke_args *);
+int symlink(struct thread *, struct symlink_args *);
+int readlink(struct thread *, struct readlink_args *);
+int execve(struct thread *, struct execve_args *);
+int umask(struct thread *, struct umask_args *);
+int chroot(struct thread *, struct chroot_args *);
+int msync(struct thread *, struct msync_args *);
+int vfork(struct thread *, struct vfork_args *);
+int sbrk(struct thread *, struct sbrk_args *);
+int sstk(struct thread *, struct sstk_args *);
+int ovadvise(struct thread *, struct ovadvise_args *);
+int munmap(struct thread *, struct munmap_args *);
+int mprotect(struct thread *, struct mprotect_args *);
+int madvise(struct thread *, struct madvise_args *);
+int mincore(struct thread *, struct mincore_args *);
+int getgroups(struct thread *, struct getgroups_args *);
+int setgroups(struct thread *, struct setgroups_args *);
+int getpgrp(struct thread *, struct getpgrp_args *);
+int setpgid(struct thread *, struct setpgid_args *);
+int setitimer(struct thread *, struct setitimer_args *);
+int swapon(struct thread *, struct swapon_args *);
+int getitimer(struct thread *, struct getitimer_args *);
+int getdtablesize(struct thread *, struct getdtablesize_args *);
+int dup2(struct thread *, struct dup2_args *);
+int fcntl(struct thread *, struct fcntl_args *);
+int select(struct thread *, struct select_args *);
+int fsync(struct thread *, struct fsync_args *);
+int setpriority(struct thread *, struct setpriority_args *);
+int socket(struct thread *, struct socket_args *);
+int connect(struct thread *, struct connect_args *);
+int getpriority(struct thread *, struct getpriority_args *);
+int osigreturn(struct thread *, struct osigreturn_args *);
+int bind(struct thread *, struct bind_args *);
+int setsockopt(struct thread *, struct setsockopt_args *);
+int listen(struct thread *, struct listen_args *);
+int gettimeofday(struct thread *, struct gettimeofday_args *);
+int getrusage(struct thread *, struct getrusage_args *);
+int getsockopt(struct thread *, struct getsockopt_args *);
+int readv(struct thread *, struct readv_args *);
+int writev(struct thread *, struct writev_args *);
+int settimeofday(struct thread *, struct settimeofday_args *);
+int fchown(struct thread *, struct fchown_args *);
+int fchmod(struct thread *, struct fchmod_args *);
+int setreuid(struct thread *, struct setreuid_args *);
+int setregid(struct thread *, struct setregid_args *);
+int rename(struct thread *, struct rename_args *);
+int flock(struct thread *, struct flock_args *);
+int mkfifo(struct thread *, struct mkfifo_args *);
+int sendto(struct thread *, struct sendto_args *);
+int shutdown(struct thread *, struct shutdown_args *);
+int socketpair(struct thread *, struct socketpair_args *);
+int mkdir(struct thread *, struct mkdir_args *);
+int rmdir(struct thread *, struct rmdir_args *);
+int utimes(struct thread *, struct utimes_args *);
+int adjtime(struct thread *, struct adjtime_args *);
+int setsid(struct thread *, struct setsid_args *);
+int quotactl(struct thread *, struct quotactl_args *);
+int nfssvc(struct thread *, struct nfssvc_args *);
+int statfs(struct thread *, struct statfs_args *);
+int fstatfs(struct thread *, struct fstatfs_args *);
+int getfh(struct thread *, struct getfh_args *);
+int getdomainname(struct thread *, struct getdomainname_args *);
+int setdomainname(struct thread *, struct setdomainname_args *);
+int uname(struct thread *, struct uname_args *);
+int sysarch(struct thread *, struct sysarch_args *);
+int rtprio(struct thread *, struct rtprio_args *);
+int semsys(struct thread *, struct semsys_args *);
+int msgsys(struct thread *, struct msgsys_args *);
+int shmsys(struct thread *, struct shmsys_args *);
+int pread(struct thread *, struct pread_args *);
+int pwrite(struct thread *, struct pwrite_args *);
+int ntp_adjtime(struct thread *, struct ntp_adjtime_args *);
+int setgid(struct thread *, struct setgid_args *);
+int setegid(struct thread *, struct setegid_args *);
+int seteuid(struct thread *, struct seteuid_args *);
+int stat(struct thread *, struct stat_args *);
+int fstat(struct thread *, struct fstat_args *);
+int lstat(struct thread *, struct lstat_args *);
+int pathconf(struct thread *, struct pathconf_args *);
+int fpathconf(struct thread *, struct fpathconf_args *);
+int getrlimit(struct thread *, struct __getrlimit_args *);
+int setrlimit(struct thread *, struct __setrlimit_args *);
+int getdirentries(struct thread *, struct getdirentries_args *);
+int mmap(struct thread *, struct mmap_args *);
+int lseek(struct thread *, struct lseek_args *);
+int truncate(struct thread *, struct truncate_args *);
+int ftruncate(struct thread *, struct ftruncate_args *);
+int __sysctl(struct thread *, struct sysctl_args *);
+int mlock(struct thread *, struct mlock_args *);
+int munlock(struct thread *, struct munlock_args *);
+int undelete(struct thread *, struct undelete_args *);
+int futimes(struct thread *, struct futimes_args *);
+int getpgid(struct thread *, struct getpgid_args *);
+int poll(struct thread *, struct poll_args *);
+int lkmnosys(struct thread *, struct nosys_args *);
+int __semctl(struct thread *, struct __semctl_args *);
+int semget(struct thread *, struct semget_args *);
+int semop(struct thread *, struct semop_args *);
+int msgctl(struct thread *, struct msgctl_args *);
+int msgget(struct thread *, struct msgget_args *);
+int msgsnd(struct thread *, struct msgsnd_args *);
+int msgrcv(struct thread *, struct msgrcv_args *);
+int shmat(struct thread *, struct shmat_args *);
+int shmctl(struct thread *, struct shmctl_args *);
+int shmdt(struct thread *, struct shmdt_args *);
+int shmget(struct thread *, struct shmget_args *);
+int clock_gettime(struct thread *, struct clock_gettime_args *);
+int clock_settime(struct thread *, struct clock_settime_args *);
+int clock_getres(struct thread *, struct clock_getres_args *);
+int nanosleep(struct thread *, struct nanosleep_args *);
+int minherit(struct thread *, struct minherit_args *);
+int rfork(struct thread *, struct rfork_args *);
+int openbsd_poll(struct thread *, struct openbsd_poll_args *);
+int issetugid(struct thread *, struct issetugid_args *);
+int lchown(struct thread *, struct lchown_args *);
+int getdents(struct thread *, struct getdents_args *);
+int lchmod(struct thread *, struct lchmod_args *);
+int lutimes(struct thread *, struct lutimes_args *);
+int nstat(struct thread *, struct nstat_args *);
+int nfstat(struct thread *, struct nfstat_args *);
+int nlstat(struct thread *, struct nlstat_args *);
+int fhstatfs(struct thread *, struct fhstatfs_args *);
+int fhopen(struct thread *, struct fhopen_args *);
+int fhstat(struct thread *, struct fhstat_args *);
+int modnext(struct thread *, struct modnext_args *);
+int modstat(struct thread *, struct modstat_args *);
+int modfnext(struct thread *, struct modfnext_args *);
+int modfind(struct thread *, struct modfind_args *);
+int kldload(struct thread *, struct kldload_args *);
+int kldunload(struct thread *, struct kldunload_args *);
+int kldfind(struct thread *, struct kldfind_args *);
+int kldnext(struct thread *, struct kldnext_args *);
+int kldstat(struct thread *, struct kldstat_args *);
+int kldfirstmod(struct thread *, struct kldfirstmod_args *);
+int getsid(struct thread *, struct getsid_args *);
+int setresuid(struct thread *, struct setresuid_args *);
+int setresgid(struct thread *, struct setresgid_args *);
+int aio_return(struct thread *, struct aio_return_args *);
+int aio_suspend(struct thread *, struct aio_suspend_args *);
+int aio_cancel(struct thread *, struct aio_cancel_args *);
+int aio_error(struct thread *, struct aio_error_args *);
+int aio_read(struct thread *, struct aio_read_args *);
+int aio_write(struct thread *, struct aio_write_args *);
+int lio_listio(struct thread *, struct lio_listio_args *);
+int yield(struct thread *, struct yield_args *);
+int mlockall(struct thread *, struct mlockall_args *);
+int munlockall(struct thread *, struct munlockall_args *);
+int __getcwd(struct thread *, struct __getcwd_args *);
+int sched_setparam(struct thread *, struct sched_setparam_args *);
+int sched_getparam(struct thread *, struct sched_getparam_args *);
+int sched_setscheduler(struct thread *, struct sched_setscheduler_args *);
+int sched_getscheduler(struct thread *, struct sched_getscheduler_args *);
+int sched_yield(struct thread *, struct sched_yield_args *);
+int sched_get_priority_max(struct thread *, struct sched_get_priority_max_args *);
+int sched_get_priority_min(struct thread *, struct sched_get_priority_min_args *);
+int sched_rr_get_interval(struct thread *, struct sched_rr_get_interval_args *);
+int utrace(struct thread *, struct utrace_args *);
+int sendfile(struct thread *, struct sendfile_args *);
+int kldsym(struct thread *, struct kldsym_args *);
+int jail(struct thread *, struct jail_args *);
+int sigprocmask(struct thread *, struct sigprocmask_args *);
+int sigsuspend(struct thread *, struct sigsuspend_args *);
+int sigaction(struct thread *, struct sigaction_args *);
+int sigpending(struct thread *, struct sigpending_args *);
+int sigreturn(struct thread *, struct sigreturn_args *);
+int __acl_get_file(struct thread *, struct __acl_get_file_args *);
+int __acl_set_file(struct thread *, struct __acl_set_file_args *);
+int __acl_get_fd(struct thread *, struct __acl_get_fd_args *);
+int __acl_set_fd(struct thread *, struct __acl_set_fd_args *);
+int __acl_delete_file(struct thread *, struct __acl_delete_file_args *);
+int __acl_delete_fd(struct thread *, struct __acl_delete_fd_args *);
+int __acl_aclcheck_file(struct thread *, struct __acl_aclcheck_file_args *);
+int __acl_aclcheck_fd(struct thread *, struct __acl_aclcheck_fd_args *);
+int extattrctl(struct thread *, struct extattrctl_args *);
+int extattr_set_file(struct thread *, struct extattr_set_file_args *);
+int extattr_get_file(struct thread *, struct extattr_get_file_args *);
+int extattr_delete_file(struct thread *, struct extattr_delete_file_args *);
+int aio_waitcomplete(struct thread *, struct aio_waitcomplete_args *);
+int getresuid(struct thread *, struct getresuid_args *);
+int getresgid(struct thread *, struct getresgid_args *);
+int kqueue(struct thread *, struct kqueue_args *);
+int kevent(struct thread *, struct kevent_args *);
+int __cap_get_proc(struct thread *, struct __cap_get_proc_args *);
+int __cap_set_proc(struct thread *, struct __cap_set_proc_args *);
+int __cap_get_fd(struct thread *, struct __cap_get_fd_args *);
+int __cap_get_file(struct thread *, struct __cap_get_file_args *);
+int __cap_set_fd(struct thread *, struct __cap_set_fd_args *);
+int __cap_set_file(struct thread *, struct __cap_set_file_args *);
+int lkmressys(struct thread *, struct nosys_args *);
+int extattr_set_fd(struct thread *, struct extattr_set_fd_args *);
+int extattr_get_fd(struct thread *, struct extattr_get_fd_args *);
+int extattr_delete_fd(struct thread *, struct extattr_delete_fd_args *);
+int __setugid(struct thread *, struct __setugid_args *);
+int nfsclnt(struct thread *, struct nfsclnt_args *);
+int eaccess(struct thread *, struct eaccess_args *);
+int nmount(struct thread *, struct nmount_args *);
+int kse_exit(struct thread *, struct kse_exit_args *);
+int kse_wakeup(struct thread *, struct kse_wakeup_args *);
+int kse_new(struct thread *, struct kse_new_args *);
+int thread_wakeup(struct thread *, struct thread_wakeup_args *);
+int kse_yield(struct thread *, struct kse_yield_args *);
#ifdef COMPAT_43
@@ -1483,42 +1483,42 @@ struct ogetdirentries_args {
char count_l_[PADL_(u_int)]; u_int count; char count_r_[PADR_(u_int)];
char basep_l_[PADL_(long *)]; long * basep; char basep_r_[PADR_(long *)];
};
-int ocreat __P((struct thread *, struct ocreat_args *));
-int olseek __P((struct thread *, struct olseek_args *));
-int ostat __P((struct thread *, struct ostat_args *));
-int olstat __P((struct thread *, struct olstat_args *));
-int osigaction __P((struct thread *, struct osigaction_args *));
-int osigprocmask __P((struct thread *, struct osigprocmask_args *));
-int osigpending __P((struct thread *, struct osigpending_args *));
-int ofstat __P((struct thread *, struct ofstat_args *));
-int ogetkerninfo __P((struct thread *, struct getkerninfo_args *));
-int ogetpagesize __P((struct thread *, struct getpagesize_args *));
-int ommap __P((struct thread *, struct ommap_args *));
-int owait __P((struct thread *, struct owait_args *));
-int ogethostname __P((struct thread *, struct gethostname_args *));
-int osethostname __P((struct thread *, struct sethostname_args *));
-int oaccept __P((struct thread *, struct accept_args *));
-int osend __P((struct thread *, struct osend_args *));
-int orecv __P((struct thread *, struct orecv_args *));
-int osigvec __P((struct thread *, struct osigvec_args *));
-int osigblock __P((struct thread *, struct osigblock_args *));
-int osigsetmask __P((struct thread *, struct osigsetmask_args *));
-int osigsuspend __P((struct thread *, struct osigsuspend_args *));
-int osigstack __P((struct thread *, struct osigstack_args *));
-int orecvmsg __P((struct thread *, struct orecvmsg_args *));
-int osendmsg __P((struct thread *, struct osendmsg_args *));
-int orecvfrom __P((struct thread *, struct recvfrom_args *));
-int otruncate __P((struct thread *, struct otruncate_args *));
-int oftruncate __P((struct thread *, struct oftruncate_args *));
-int ogetpeername __P((struct thread *, struct ogetpeername_args *));
-int ogethostid __P((struct thread *, struct ogethostid_args *));
-int osethostid __P((struct thread *, struct osethostid_args *));
-int ogetrlimit __P((struct thread *, struct ogetrlimit_args *));
-int osetrlimit __P((struct thread *, struct osetrlimit_args *));
-int okillpg __P((struct thread *, struct okillpg_args *));
-int oquota __P((struct thread *, struct oquota_args *));
-int ogetsockname __P((struct thread *, struct getsockname_args *));
-int ogetdirentries __P((struct thread *, struct ogetdirentries_args *));
+int ocreat(struct thread *, struct ocreat_args *);
+int olseek(struct thread *, struct olseek_args *);
+int ostat(struct thread *, struct ostat_args *);
+int olstat(struct thread *, struct olstat_args *);
+int osigaction(struct thread *, struct osigaction_args *);
+int osigprocmask(struct thread *, struct osigprocmask_args *);
+int osigpending(struct thread *, struct osigpending_args *);
+int ofstat(struct thread *, struct ofstat_args *);
+int ogetkerninfo(struct thread *, struct getkerninfo_args *);
+int ogetpagesize(struct thread *, struct getpagesize_args *);
+int ommap(struct thread *, struct ommap_args *);
+int owait(struct thread *, struct owait_args *);
+int ogethostname(struct thread *, struct gethostname_args *);
+int osethostname(struct thread *, struct sethostname_args *);
+int oaccept(struct thread *, struct accept_args *);
+int osend(struct thread *, struct osend_args *);
+int orecv(struct thread *, struct orecv_args *);
+int osigvec(struct thread *, struct osigvec_args *);
+int osigblock(struct thread *, struct osigblock_args *);
+int osigsetmask(struct thread *, struct osigsetmask_args *);
+int osigsuspend(struct thread *, struct osigsuspend_args *);
+int osigstack(struct thread *, struct osigstack_args *);
+int orecvmsg(struct thread *, struct orecvmsg_args *);
+int osendmsg(struct thread *, struct osendmsg_args *);
+int orecvfrom(struct thread *, struct recvfrom_args *);
+int otruncate(struct thread *, struct otruncate_args *);
+int oftruncate(struct thread *, struct oftruncate_args *);
+int ogetpeername(struct thread *, struct ogetpeername_args *);
+int ogethostid(struct thread *, struct ogethostid_args *);
+int osethostid(struct thread *, struct osethostid_args *);
+int ogetrlimit(struct thread *, struct ogetrlimit_args *);
+int osetrlimit(struct thread *, struct osetrlimit_args *);
+int okillpg(struct thread *, struct okillpg_args *);
+int oquota(struct thread *, struct oquota_args *);
+int ogetsockname(struct thread *, struct getsockname_args *);
+int ogetdirentries(struct thread *, struct ogetdirentries_args *);
#endif /* COMPAT_43 */
OpenPOWER on IntegriCloud