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

Modified Files:
        src/sys/arch/amd64/amd64: machdep.c

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


To generate a diff of this commit:
cvs rdiff -u -r1.156 -r1.157 src/sys/arch/amd64/amd64/machdep.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/amd64/amd64/machdep.c
diff -u src/sys/arch/amd64/amd64/machdep.c:1.156 src/sys/arch/amd64/amd64/machdep.c:1.157
--- src/sys/arch/amd64/amd64/machdep.c:1.156	Fri Nov 12 13:18:56 2010
+++ src/sys/arch/amd64/amd64/machdep.c	Mon Nov 15 06:12:28 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.156 2010/11/12 13:18:56 uebayasi Exp $	*/
+/*	$NetBSD: machdep.c,v 1.157 2010/11/15 06:12:28 uebayasi Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2000, 2006, 2007, 2008
@@ -107,7 +107,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.156 2010/11/12 13:18:56 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.157 2010/11/15 06:12:28 uebayasi Exp $");
 
 /* #define XENDEBUG_LOW  */
 
@@ -148,6 +148,8 @@
 #include <sys/syscallargs.h>
 #include <sys/ksyms.h>
 #include <sys/device.h>
+#include <sys/lwp.h>
+#include <sys/proc.h>
 
 #ifdef KGDB
 #include <sys/kgdb.h>

Reply via email to