diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-11 23:04:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-11 23:04:15 +0000 |
commit | 78281192785f05e8c96908f15fd66d9f01756950 (patch) | |
tree | a4c934f73e8ca4674bed0781accec86e5b4ec39b /sys | |
parent | aaa928e4cff4b60cd813352d124af8477c807977 (diff) |
regen now that [gs]etpriority(2) take id_t, not int.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/init_sysent.c | 4 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 4 | ||||
-rw-r--r-- | sys/sys/syscall.h | 8 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 8 |
4 files changed, 12 insertions, 12 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 0cf3e391e13..57b497780a8 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: init_sysent.c,v 1.71 2003/12/10 23:12:54 millert Exp $ */ +/* $OpenBSD: init_sysent.c,v 1.72 2003/12/11 23:04:14 millert Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.63 2003/12/10 23:10:08 millert Exp + * created from; OpenBSD: syscalls.master,v 1.64 2003/12/11 23:02:30 millert Exp */ #include <sys/param.h> diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index e5aaf4df49e..b05a2b8b73c 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.71 2003/12/10 23:11:36 millert Exp $ */ +/* $OpenBSD: syscalls.c,v 1.72 2003/12/11 23:04:14 millert Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.63 2003/12/10 23:10:08 millert Exp + * created from; OpenBSD: syscalls.master,v 1.64 2003/12/11 23:02:30 millert Exp */ char *syscallnames[] = { diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index c88cb187e5b..267bebe6437 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.70 2003/12/10 23:11:36 millert Exp $ */ +/* $OpenBSD: syscall.h,v 1.71 2003/12/11 23:04:14 millert Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.63 2003/12/10 23:10:08 millert Exp + * created from; OpenBSD: syscalls.master,v 1.64 2003/12/11 23:02:30 millert Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -264,7 +264,7 @@ /* syscall: "fsync" ret: "int" args: "int" */ #define SYS_fsync 95 -/* syscall: "setpriority" ret: "int" args: "int" "int" "int" */ +/* syscall: "setpriority" ret: "int" args: "int" "id_t" "int" */ #define SYS_setpriority 96 /* syscall: "socket" ret: "int" args: "int" "int" "int" */ @@ -275,7 +275,7 @@ /* 99 is compat_43 oaccept */ -/* syscall: "getpriority" ret: "int" args: "int" "int" */ +/* syscall: "getpriority" ret: "int" args: "int" "id_t" */ #define SYS_getpriority 100 /* 101 is compat_43 osend */ diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 8b6c8346e26..90a3be43d25 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.72 2003/12/10 23:11:36 millert Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.73 2003/12/11 23:04:14 millert Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.63 2003/12/10 23:10:08 millert Exp + * created from; OpenBSD: syscalls.master,v 1.64 2003/12/11 23:02:30 millert Exp */ #ifdef syscallarg @@ -415,7 +415,7 @@ struct sys_fsync_args { struct sys_setpriority_args { syscallarg(int) which; - syscallarg(int) who; + syscallarg(id_t) who; syscallarg(int) prio; }; @@ -439,7 +439,7 @@ struct compat_43_sys_accept_args { struct sys_getpriority_args { syscallarg(int) which; - syscallarg(int) who; + syscallarg(id_t) who; }; struct compat_43_sys_send_args { |