Module Name:    src
Committed By:   uebayasi
Date:           Mon Nov 15 06:06:51 UTC 2010

Modified Files:
        src/sys/arch/acorn26/acorn26: pmap.c

Log Message:
struct proc * and struct lwp * derefs.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/arch/acorn26/acorn26/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/acorn26/acorn26/pmap.c
diff -u src/sys/arch/acorn26/acorn26/pmap.c:1.32 src/sys/arch/acorn26/acorn26/pmap.c:1.33
--- src/sys/arch/acorn26/acorn26/pmap.c:1.32	Fri Nov 12 12:48:49 2010
+++ src/sys/arch/acorn26/acorn26/pmap.c	Mon Nov 15 06:06:51 2010
@@ -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
  * All rights reserved.
@@ -102,12 +102,14 @@
 
 #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/malloc.h>
 #include <sys/pool.h>
 #include <sys/systm.h>
+#include <sys/lwp.h>
+#include <sys/proc.h>
 
 #include <uvm/uvm.h>
 #include <uvm/uvm_stat.h>

Reply via email to