Fix build of rump after change in lwp_create's signature

This commit is contained in:
kamil 2017-04-21 19:16:10 +00:00
parent a110095d6d
commit 7d2cd9b2d1
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: threads.c,v 1.25 2017/04/21 15:10:35 christos Exp $ */
/* $NetBSD: threads.c,v 1.26 2017/04/21 19:16:10 kamil Exp $ */
/*
* Copyright (c) 2007-2009 Antti Kantee. All Rights Reserved.
@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: threads.c,v 1.25 2017/04/21 15:10:35 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: threads.c,v 1.26 2017/04/21 19:16:10 kamil Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@ -294,7 +294,7 @@ lwpbouncer(void *arg)
int
lwp_create(struct lwp *l1, struct proc *p2, vaddr_t uaddr, int flags,
void *stack, size_t stacksize, void (*func)(void *), void *arg,
struct lwp **newlwpp, int sclass, const sigmask_t *sigmask,
struct lwp **newlwpp, int sclass, const sigset_t *sigmask,
const stack_t *sigstk)
{
struct thrdesc *td;