diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2009-03-12 06:56:14 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2009-03-12 06:56:14 +0000 |
commit | bdc9f84c1de60eaf5f6699213fd0cdcc2f188a02 (patch) | |
tree | d8e4474e3a0dce0128fbabdffabdd6b4680c43d8 /sys/kern | |
parent | 349bc3a08a0c0f58383d811fb3a96ec18afa30be (diff) |
threxit() can't return, so its return type is really void
"probably does not need a crank, so perhaps just go for it" deraadt@
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 7c8970714aa..13ac5273a87 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.90 2008/03/16 19:42:57 otto Exp $ +; $OpenBSD: syscalls.master,v 1.91 2009/03/12 06:56:13 guenther Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -599,7 +599,7 @@ 299 STD { pid_t sys_getthrid(void); } 300 STD { int sys_thrsleep(void *ident, int timeout, void *lock); } 301 STD { int sys_thrwakeup(void *ident, int n); } -302 STD { int sys_threxit(int rval); } +302 STD { void sys_threxit(int rval); } 303 STD { int sys_thrsigdivert(sigset_t sigmask); } #else 299 UNIMPL |