Module Name: src
Committed By: uebayasi
Date: Mon Nov 15 06:05:27 UTC 2010
Modified Files:
src/sys/arch/acorn26/acorn26: except.c
Log Message:
Dereferencing struct proc * and struct lwp *, include them
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/acorn26/acorn26/except.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/except.c
diff -u src/sys/arch/acorn26/acorn26/except.c:1.25 src/sys/arch/acorn26/acorn26/except.c:1.26
--- src/sys/arch/acorn26/acorn26/except.c:1.25 Wed Jul 7 01:17:26 2010
+++ src/sys/arch/acorn26/acorn26/except.c Mon Nov 15 06:05:27 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: except.c,v 1.25 2010/07/07 01:17:26 chs Exp $ */
+/* $NetBSD: except.c,v 1.26 2010/11/15 06:05:27 uebayasi Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 Ben Harris
* All rights reserved.
@@ -31,7 +31,7 @@
#include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: except.c,v 1.25 2010/07/07 01:17:26 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: except.c,v 1.26 2010/11/15 06:05:27 uebayasi Exp $");
#include "opt_ddb.h"
@@ -41,6 +41,8 @@
#include <sys/syslog.h>
#include <sys/systm.h>
#include <sys/cpu.h>
+#include <sys/lwp.h>
+#include <sys/proc.h>
#include <uvm/uvm_extern.h>