Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch Explicitly include <machine/pcb.h> for struct pcb.



details:   https://anonhg.NetBSD.org/src/rev/dae509c1ce37
branches:  trunk
changeset: 760931:dae509c1ce37
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Mon Jan 17 14:36:32 2011 +0000

description:
Explicitly include <machine/pcb.h> for struct pcb.

diffstat:

 sys/arch/atari/atari/trap.c        |  5 +++--
 sys/arch/hp300/hp300/machdep.c     |  5 +++--
 sys/arch/news68k/news68k/machdep.c |  5 +++--
 sys/arch/sun2/sun2/machdep.c       |  5 +++--
 sys/arch/sun2/sun2/trap.c          |  5 +++--
 sys/arch/sun3/sun3/machdep.c       |  5 +++--
 sys/arch/sun3/sun3/trap.c          |  5 +++--
 sys/arch/sun3/sun3x/machdep.c      |  5 +++--
 8 files changed, 24 insertions(+), 16 deletions(-)

diffs (208 lines):

diff -r fabe57173fca -r dae509c1ce37 sys/arch/atari/atari/trap.c
--- a/sys/arch/atari/atari/trap.c       Mon Jan 17 13:43:02 2011 +0000
+++ b/sys/arch/atari/atari/trap.c       Mon Jan 17 14:36:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.109 2010/12/20 00:25:30 matt Exp $  */
+/*     $NetBSD: trap.c,v 1.110 2011/01/17 14:36:32 tsutsui Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.109 2010/12/20 00:25:30 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.110 2011/01/17 14:36:32 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -108,6 +108,7 @@
 #include <machine/psl.h>
 #include <machine/trap.h>
 #include <machine/cpu.h>
+#include <machine/pcb.h>
 #include <machine/reg.h>
 #include <machine/pte.h>
 #ifdef DDB
diff -r fabe57173fca -r dae509c1ce37 sys/arch/hp300/hp300/machdep.c
--- a/sys/arch/hp300/hp300/machdep.c    Mon Jan 17 13:43:02 2011 +0000
+++ b/sys/arch/hp300/hp300/machdep.c    Mon Jan 17 14:36:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.214 2011/01/06 14:19:54 tsutsui Exp $    */
+/*     $NetBSD: machdep.c,v 1.215 2011/01/17 14:36:33 tsutsui Exp $    */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.214 2011/01/06 14:19:54 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.215 2011/01/17 14:36:33 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_compat_netbsd.h"
@@ -126,6 +126,7 @@
 #include <machine/cpu.h>
 #include <machine/hp300spu.h>
 #include <machine/reg.h>
+#include <machine/pcb.h>
 #include <machine/psl.h>
 #include <machine/pte.h>
 
diff -r fabe57173fca -r dae509c1ce37 sys/arch/news68k/news68k/machdep.c
--- a/sys/arch/news68k/news68k/machdep.c        Mon Jan 17 13:43:02 2011 +0000
+++ b/sys/arch/news68k/news68k/machdep.c        Mon Jan 17 14:36:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.87 2010/12/20 00:25:40 matt Exp $        */
+/*     $NetBSD: machdep.c,v 1.88 2011/01/17 14:36:33 tsutsui Exp $     */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.87 2010/12/20 00:25:40 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.88 2011/01/17 14:36:33 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_compat_netbsd.h"
@@ -115,6 +115,7 @@
 #include <machine/autoconf.h>
 #include <machine/cpu.h>
 #include <machine/reg.h>
+#include <machine/pcb.h>
 #include <machine/pte.h>
 #include <machine/intr.h>
 
diff -r fabe57173fca -r dae509c1ce37 sys/arch/sun2/sun2/machdep.c
--- a/sys/arch/sun2/sun2/machdep.c      Mon Jan 17 13:43:02 2011 +0000
+++ b/sys/arch/sun2/sun2/machdep.c      Mon Jan 17 14:36:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.65 2010/02/08 19:02:32 joerg Exp $       */
+/*     $NetBSD: machdep.c,v 1.66 2011/01/17 14:36:33 tsutsui Exp $     */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -153,7 +153,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.65 2010/02/08 19:02:32 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.66 2011/01/17 14:36:33 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -199,6 +199,7 @@
 #include <machine/idprom.h>
 #include <machine/kcore.h>
 #include <machine/reg.h>
+#include <machine/pcb.h>
 #include <machine/psl.h>
 #include <machine/pte.h>
 #define _SUN68K_BUS_DMA_PRIVATE
diff -r fabe57173fca -r dae509c1ce37 sys/arch/sun2/sun2/trap.c
--- a/sys/arch/sun2/sun2/trap.c Mon Jan 17 13:43:02 2011 +0000
+++ b/sys/arch/sun2/sun2/trap.c Mon Jan 17 14:36:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.41 2010/12/20 00:25:44 matt Exp $   */
+/*     $NetBSD: trap.c,v 1.42 2011/01/17 14:36:33 tsutsui Exp $        */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.41 2010/12/20 00:25:44 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.42 2011/01/17 14:36:33 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -108,6 +108,7 @@
 
 #include <machine/cpu.h>
 #include <machine/endian.h>
+#include <machine/pcb.h>
 #include <machine/psl.h>
 #include <machine/trap.h>
 #include <machine/reg.h>
diff -r fabe57173fca -r dae509c1ce37 sys/arch/sun3/sun3/machdep.c
--- a/sys/arch/sun3/sun3/machdep.c      Mon Jan 17 13:43:02 2011 +0000
+++ b/sys/arch/sun3/sun3/machdep.c      Mon Jan 17 14:36:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.198 2010/10/15 15:55:53 tsutsui Exp $    */
+/*     $NetBSD: machdep.c,v 1.199 2011/01/17 14:36:33 tsutsui Exp $    */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.198 2010/10/15 15:55:53 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.199 2011/01/17 14:36:33 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -122,6 +122,7 @@
 #include <machine/idprom.h>
 #include <machine/kcore.h>
 #include <machine/reg.h>
+#include <machine/pcb.h>
 #include <machine/psl.h>
 #include <machine/pte.h>
 
diff -r fabe57173fca -r dae509c1ce37 sys/arch/sun3/sun3/trap.c
--- a/sys/arch/sun3/sun3/trap.c Mon Jan 17 13:43:02 2011 +0000
+++ b/sys/arch/sun3/sun3/trap.c Mon Jan 17 14:36:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.140 2010/12/20 00:25:45 matt Exp $  */
+/*     $NetBSD: trap.c,v 1.141 2011/01/17 14:36:33 tsutsui Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.140 2010/12/20 00:25:45 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.141 2011/01/17 14:36:33 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -108,6 +108,7 @@
 
 #include <machine/cpu.h>
 #include <machine/endian.h>
+#include <machine/pcb.h>
 #include <machine/psl.h>
 #include <machine/trap.h>
 #include <machine/reg.h>
diff -r fabe57173fca -r dae509c1ce37 sys/arch/sun3/sun3x/machdep.c
--- a/sys/arch/sun3/sun3x/machdep.c     Mon Jan 17 13:43:02 2011 +0000
+++ b/sys/arch/sun3/sun3x/machdep.c     Mon Jan 17 14:36:32 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.124 2010/10/15 15:55:53 tsutsui Exp $    */
+/*     $NetBSD: machdep.c,v 1.125 2011/01/17 14:36:33 tsutsui Exp $    */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -75,7 +75,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.124 2010/10/15 15:55:53 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.125 2011/01/17 14:36:33 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -119,6 +119,7 @@
 #include <machine/idprom.h>
 #include <machine/kcore.h>
 #include <machine/reg.h>
+#include <machine/pcb.h>
 #include <machine/psl.h>
 #include <machine/pte.h>
 



Home | Main Index | Thread Index | Old Index