struct proc * and struct lwp * derefs.
This commit is contained in:
parent
5d2c6eda11
commit
b72bb4dfdd
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: pmap.c,v 1.32 2010/11/12 12:48:49 uebayasi Exp $ */
|
/* $NetBSD: pmap.c,v 1.33 2010/11/15 06:06:51 uebayasi Exp $ */
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1997, 1998, 2000 Ben Harris
|
* Copyright (c) 1997, 1998, 2000 Ben Harris
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
@ -102,12 +102,14 @@
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
|
||||||
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.32 2010/11/12 12:48:49 uebayasi Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.33 2010/11/15 06:06:51 uebayasi Exp $");
|
||||||
|
|
||||||
#include <sys/kernel.h> /* for cold */
|
#include <sys/kernel.h> /* for cold */
|
||||||
#include <sys/malloc.h>
|
#include <sys/malloc.h>
|
||||||
#include <sys/pool.h>
|
#include <sys/pool.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
|
#include <sys/lwp.h>
|
||||||
|
#include <sys/proc.h>
|
||||||
|
|
||||||
#include <uvm/uvm.h>
|
#include <uvm/uvm.h>
|
||||||
#include <uvm/uvm_stat.h>
|
#include <uvm/uvm_stat.h>
|
||||||
|
|
Loading…
Reference in New Issue