Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/kern/sys_lwp.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/kern/sys_lwp.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.34.2.1 retrieving revision 1.35 diff -u -p -r1.34.2.1 -r1.35 --- src/sys/kern/sys_lwp.c 2008/03/24 07:16:14 1.34.2.1 +++ src/sys/kern/sys_lwp.c 2008/03/12 11:00:43 1.35 @@ -1,7 +1,7 @@ -/* $NetBSD: sys_lwp.c,v 1.34.2.1 2008/03/24 07:16:14 keiichi Exp $ */ +/* $NetBSD: sys_lwp.c,v 1.35 2008/03/12 11:00:43 ad Exp $ */ /*- - * Copyright (c) 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc. + * Copyright (c) 2001, 2006, 2007 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation @@ -42,7 +42,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: sys_lwp.c,v 1.34.2.1 2008/03/24 07:16:14 keiichi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sys_lwp.c,v 1.35 2008/03/12 11:00:43 ad Exp $"); #include #include @@ -312,7 +312,7 @@ sys__lwp_wakeup(struct lwp *l, const str error = EBUSY; } else { /* Wake it up. lwp_unsleep() will release the LWP lock. */ - (void)lwp_unsleep(t, true); + lwp_unsleep(t); error = 0; } @@ -502,7 +502,7 @@ lwp_unpark(lwpid_t target, const void *h lwp_lock(t); if (t->l_syncobj == &lwp_park_sobj) { /* Releases the LWP lock. */ - (void)lwp_unsleep(t, true); + lwp_unsleep(t); } else { /* * Set the operation pending. The next call to _lwp_park @@ -708,7 +708,7 @@ sys__lwp_unpark_all(struct lwp *l, const */ if (t->l_syncobj == &lwp_park_sobj) { /* Releases the LWP lock. */ - (void)lwp_unsleep(t, true); + lwp_unsleep(t); } else { /* * Set the operation pending. The next call to