summaryrefslogtreecommitdiff
path: root/sys/compat/svr4/svr4_syscallargs.h
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-03-28 22:03:50 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-03-28 22:03:50 +0000
commit17c1b573084fbe31277afcf0184b23be51f98726 (patch)
tree1d8a890a748e14d17419c20cc5b0cf6ac95b7c87 /sys/compat/svr4/svr4_syscallargs.h
parentd5565a3d188495c0791f7ed4e5a33119be1ec372 (diff)
added 34 - nice
Diffstat (limited to 'sys/compat/svr4/svr4_syscallargs.h')
-rw-r--r--sys/compat/svr4/svr4_syscallargs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/compat/svr4/svr4_syscallargs.h b/sys/compat/svr4/svr4_syscallargs.h
index 3bf4ec44f4d..94f08b4424a 100644
--- a/sys/compat/svr4/svr4_syscallargs.h
+++ b/sys/compat/svr4/svr4_syscallargs.h
@@ -65,6 +65,10 @@ struct svr4_sys_access_args {
syscallarg(int) flags;
};
+struct svr4_sys_nice_args {
+ syscallarg(int) prio;
+};
+
struct svr4_sys_kill_args {
syscallarg(int) pid;
syscallarg(int) signum;
@@ -361,6 +365,7 @@ int svr4_sys_fstat __P((struct proc *, void *, register_t *));
int svr4_sys_pause __P((struct proc *, void *, register_t *));
int svr4_sys_utime __P((struct proc *, void *, register_t *));
int svr4_sys_access __P((struct proc *, void *, register_t *));
+int svr4_sys_nice __P((struct proc *, void *, register_t *));
int sys_sync __P((struct proc *, void *, register_t *));
int svr4_sys_kill __P((struct proc *, void *, register_t *));
int svr4_sys_pgrpsys __P((struct proc *, void *, register_t *));