Correct arg name in comment.

This commit is contained in:
skrll 2004-10-06 08:55:27 +00:00
parent f4bfaafba1
commit d42dfb7727

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_lwp.c,v 1.27 2004/05/12 21:10:09 matt Exp $ */
/* $NetBSD: kern_lwp.c,v 1.28 2004/10/06 08:55:27 skrll Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_lwp.c,v 1.27 2004/05/12 21:10:09 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: kern_lwp.c,v 1.28 2004/10/06 08:55:27 skrll Exp $");
#include "opt_multiprocessor.h"
@ -300,7 +300,7 @@ int
sys__lwp_wakeup(struct lwp *l, void *v, register_t *retval)
{
struct sys__lwp_wakeup_args /* {
syscallarg(lwpid_t) wakeup;
syscallarg(lwpid_t) target;
} */ *uap = v;
lwpid_t target_lid;
struct lwp *t;