Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Remove obsolete comments about curproc.



details:   https://anonhg.NetBSD.org/src/rev/69dd4a440e1b
branches:  trunk
changeset: 555090:69dd4a440e1b
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sat Nov 08 12:17:25 2003 +0000

description:
Remove obsolete comments about curproc.

diffstat:

 sys/arch/amiga/amiga/trap.c     |  5 ++---
 sys/arch/atari/atari/trap.c     |  5 ++---
 sys/arch/cesfic/cesfic/trap.c   |  5 ++---
 sys/arch/hp300/hp300/trap.c     |  5 ++---
 sys/arch/luna68k/luna68k/trap.c |  5 ++---
 sys/arch/mac68k/mac68k/trap.c   |  5 ++---
 sys/arch/mvme68k/mvme68k/trap.c |  5 ++---
 sys/arch/news68k/news68k/trap.c |  5 ++---
 sys/arch/next68k/next68k/trap.c |  5 ++---
 sys/arch/sun2/sun2/trap.c       |  5 ++---
 sys/arch/sun3/sun3/trap.c       |  5 ++---
 sys/arch/x68k/x68k/trap.c       |  5 ++---
 12 files changed, 24 insertions(+), 36 deletions(-)

diffs (truncated from 312 to 300 lines):

diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/amiga/amiga/trap.c
--- a/sys/arch/amiga/amiga/trap.c       Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/amiga/amiga/trap.c       Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.98 2003/10/31 16:44:34 cl Exp $     */
+/*     $NetBSD: trap.c,v 1.99 2003/11/08 12:17:25 tsutsui Exp $        */
 
 /*
  * Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
@@ -83,7 +83,7 @@
 #include "opt_fpu_emulate.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.98 2003/10/31 16:44:34 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.99 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -603,7 +603,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/atari/atari/trap.c
--- a/sys/arch/atari/atari/trap.c       Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/atari/atari/trap.c       Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.74 2003/11/02 15:55:16 he Exp $     */
+/*     $NetBSD: trap.c,v 1.75 2003/11/08 12:17:25 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.74 2003/11/02 15:55:16 he Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.75 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -389,7 +389,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/cesfic/cesfic/trap.c
--- a/sys/arch/cesfic/cesfic/trap.c     Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/cesfic/cesfic/trap.c     Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.17 2003/11/02 16:49:38 cl Exp $     */
+/*     $NetBSD: trap.c,v 1.18 2003/11/08 12:17:25 tsutsui Exp $        */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.17 2003/11/02 16:49:38 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.18 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -329,7 +329,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/hp300/hp300/trap.c
--- a/sys/arch/hp300/hp300/trap.c       Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/hp300/hp300/trap.c       Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.107 2003/11/04 10:33:15 dsl Exp $   */
+/*     $NetBSD: trap.c,v 1.108 2003/11/08 12:17:25 tsutsui Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.107 2003/11/04 10:33:15 dsl Exp $");                                                  
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.108 2003/11/08 12:17:25 tsutsui Exp $");                                                  
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -321,7 +321,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/luna68k/luna68k/trap.c
--- a/sys/arch/luna68k/luna68k/trap.c   Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/luna68k/luna68k/trap.c   Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.28 2003/11/02 16:49:38 cl Exp $ */
+/* $NetBSD: trap.c,v 1.29 2003/11/08 12:17:25 tsutsui Exp $ */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.28 2003/11/02 16:49:38 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.29 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -287,7 +287,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/mac68k/mac68k/trap.c
--- a/sys/arch/mac68k/mac68k/trap.c     Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/mac68k/mac68k/trap.c     Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.109 2003/11/02 16:49:38 cl Exp $    */
+/*     $NetBSD: trap.c,v 1.110 2003/11/08 12:17:25 tsutsui Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.109 2003/11/02 16:49:38 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.110 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -303,7 +303,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/mvme68k/mvme68k/trap.c
--- a/sys/arch/mvme68k/mvme68k/trap.c   Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/mvme68k/mvme68k/trap.c   Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.72 2003/11/02 16:49:38 cl Exp $     */
+/*     $NetBSD: trap.c,v 1.73 2003/11/08 12:17:25 tsutsui Exp $        */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.72 2003/11/02 16:49:38 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.73 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -341,7 +341,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/news68k/news68k/trap.c
--- a/sys/arch/news68k/news68k/trap.c   Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/news68k/news68k/trap.c   Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.34 2003/11/02 16:49:38 cl Exp $     */
+/*     $NetBSD: trap.c,v 1.35 2003/11/08 12:17:25 tsutsui Exp $        */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.34 2003/11/02 16:49:38 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.35 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -311,7 +311,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/next68k/next68k/trap.c
--- a/sys/arch/next68k/next68k/trap.c   Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/next68k/next68k/trap.c   Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.48 2003/11/02 16:49:38 cl Exp $     */
+/*     $NetBSD: trap.c,v 1.49 2003/11/08 12:17:25 tsutsui Exp $        */
 
 /*
  * This file was taken from mvme68k/mvme68k/trap.c
@@ -84,7 +84,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.48 2003/11/02 16:49:38 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.49 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -337,7 +337,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/sun2/sun2/trap.c
--- a/sys/arch/sun2/sun2/trap.c Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/sun2/sun2/trap.c Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.15 2003/10/31 16:44:35 cl Exp $     */
+/*     $NetBSD: trap.c,v 1.16 2003/11/08 12:17:25 tsutsui Exp $        */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.15 2003/10/31 16:44:35 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.16 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -267,7 +267,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/sun3/sun3/trap.c
--- a/sys/arch/sun3/sun3/trap.c Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/sun3/sun3/trap.c Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.114 2003/10/31 16:44:35 cl Exp $    */
+/*     $NetBSD: trap.c,v 1.115 2003/11/08 12:17:25 tsutsui Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -78,7 +78,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.114 2003/10/31 16:44:35 cl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.115 2003/11/08 12:17:25 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_execfmt.h"
@@ -276,7 +276,6 @@
        KSI_INIT_TRAP(&ksi);
        ksi.ksi_trap = type & ~T_USER;
 
-       /* I have verified that this DOES happen! -gwr */
        if (l == NULL)
                l = &lwp0;
        p = l->l_proc;
diff -r 2cf3dc4c3b20 -r 69dd4a440e1b sys/arch/x68k/x68k/trap.c
--- a/sys/arch/x68k/x68k/trap.c Sat Nov 08 12:08:12 2003 +0000
+++ b/sys/arch/x68k/x68k/trap.c Sat Nov 08 12:17:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: trap.c,v 1.70 2003/11/02 14:06:05 isaki Exp $  */
+/*     $NetBSD: trap.c,v 1.71 2003/11/08 12:17:25 tsutsui Exp $        */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -77,7 +77,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.70 2003/11/02 14:06:05 isaki Exp $");



Home | Main Index | Thread Index | Old Index