diff options
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index ce7ad96116a..12efb98f917 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_syscallargs.h @@ -326,6 +326,18 @@ struct linux_sys_msync_args { syscallarg(int) fl; }; +struct linux_sys_getsid_args { + syscallarg(int) pid; +}; + +struct linux_sys_fdatasync_args { + syscallarg(int) fd; +}; + +struct linux_sys___sysctl_args { + syscallarg(struct linux___sysctl *) lsp; +}; + /* * System call prototypes. */ @@ -454,3 +466,8 @@ int sys_flock __P((struct proc *, void *, register_t *)); int linux_sys_msync __P((struct proc *, void *, register_t *)); int sys_readv __P((struct proc *, void *, register_t *)); int sys_writev __P((struct proc *, void *, register_t *)); +int linux_sys_getsid __P((struct proc *, void *, register_t *)); +int linux_sys_fdatasync __P((struct proc *, void *, register_t *)); +int linux_sys___sysctl __P((struct proc *, void *, register_t *)); +int sys_mlock __P((struct proc *, void *, register_t *)); +int sys_munlock __P((struct proc *, void *, register_t *)); |