Provide an empty cpu_lwp_free2().
This commit is contained in:
parent
cb750a7039
commit
b8be26359e
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: vm_machdep.c,v 1.53 2006/08/31 16:49:21 matt Exp $ */
|
||||
/* $NetBSD: vm_machdep.c,v 1.54 2007/02/22 22:37:52 uwe Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2002 The NetBSD Foundation, Inc. All rights reserved.
|
||||
|
@ -81,7 +81,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.53 2006/08/31 16:49:21 matt Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.54 2007/02/22 22:37:52 uwe Exp $");
|
||||
|
||||
#include "opt_kstack_debug.h"
|
||||
#include "opt_coredump.h"
|
||||
|
@ -312,6 +312,13 @@ cpu_lwp_free(struct lwp *l, int proc)
|
|||
/* Nothing to do */
|
||||
}
|
||||
|
||||
void
|
||||
cpu_lwp_free2(struct lwp *l)
|
||||
{
|
||||
|
||||
/* Nothing to do */
|
||||
}
|
||||
|
||||
#ifdef COREDUMP
|
||||
/*
|
||||
* Dump the machine specific segment at the start of a core dump.
|
||||
|
|
Loading…
Reference in New Issue