Source-Changes-HG archive

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

[src/trunk]: src/sys/arch G/c vestiges of old sun3-specific SYMTAB_SPACE supp...



details:   https://anonhg.NetBSD.org/src/rev/392cbd8b3054
branches:  trunk
changeset: 534763:392cbd8b3054
user:      soren <soren%NetBSD.org@localhost>
date:      Fri Aug 02 18:19:58 2002 +0000

description:
G/c vestiges of old sun3-specific SYMTAB_SPACE support.

diffstat:

 sys/arch/sun2/sun2/locore2.c  |  8 ++++----
 sys/arch/sun3/sun3/locore2.c  |  8 ++++----
 sys/arch/sun3/sun3x/locore2.c |  8 ++++----
 3 files changed, 12 insertions(+), 12 deletions(-)

diffs (108 lines):

diff -r 4859b0174648 -r 392cbd8b3054 sys/arch/sun2/sun2/locore2.c
--- a/sys/arch/sun2/sun2/locore2.c      Fri Aug 02 18:02:53 2002 +0000
+++ b/sys/arch/sun2/sun2/locore2.c      Fri Aug 02 18:19:58 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: locore2.c,v 1.6 2001/11/30 18:06:55 fredette Exp $     */
+/*     $NetBSD: locore2.c,v 1.7 2002/08/02 18:19:58 soren Exp $        */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -106,7 +106,7 @@
 static void _verify_hardware __P((void));
 static void _vm_init __P((void));
 
-#if defined(DDB) && !defined(SYMTAB_SPACE)
+#if defined(DDB)
 static void _save_symtab __P((void));
 
 /*
@@ -152,7 +152,7 @@
        ssym = (char *)ehdr;
        esym = (char *)maxsym;
 }
-#endif /* DDB && !SYMTAB_SPACE */
+#endif /* DDB */
 
 /*
  * This function is called from _bootstrap() to initialize
@@ -174,7 +174,7 @@
         * if DDB is not part of this kernel, ignore the symbols.
         */
        esym = end + 4;
-#if defined(DDB) && !defined(SYMTAB_SPACE)
+#if defined(DDB)
        /* This will advance esym past the symbols. */
        _save_symtab();
 #endif
diff -r 4859b0174648 -r 392cbd8b3054 sys/arch/sun3/sun3/locore2.c
--- a/sys/arch/sun3/sun3/locore2.c      Fri Aug 02 18:02:53 2002 +0000
+++ b/sys/arch/sun3/sun3/locore2.c      Fri Aug 02 18:19:58 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: locore2.c,v 1.79 2001/09/05 14:12:21 tsutsui Exp $     */
+/*     $NetBSD: locore2.c,v 1.80 2002/08/02 18:19:59 soren Exp $       */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -108,7 +108,7 @@
 static void _verify_hardware __P((void));
 static void _vm_init __P((void));
 
-#if defined(DDB) && !defined(SYMTAB_SPACE)
+#if defined(DDB)
 static void _save_symtab __P((void));
 
 /*
@@ -167,7 +167,7 @@
        ssym = (char *)ehdr;
        esym = (char *)maxsym;
 }
-#endif /* DDB && !SYMTAB_SPACE */
+#endif /* DDB */
 
 /*
  * This function is called from _bootstrap() to initialize
@@ -189,7 +189,7 @@
         * if DDB is not part of this kernel, ignore the symbols.
         */
        esym = end + 4;
-#if defined(DDB) && !defined(SYMTAB_SPACE)
+#if defined(DDB)
        /* This will advance esym past the symbols. */
        _save_symtab();
 #endif
diff -r 4859b0174648 -r 392cbd8b3054 sys/arch/sun3/sun3x/locore2.c
--- a/sys/arch/sun3/sun3x/locore2.c     Fri Aug 02 18:02:53 2002 +0000
+++ b/sys/arch/sun3/sun3x/locore2.c     Fri Aug 02 18:19:58 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: locore2.c,v 1.26 2001/09/05 14:18:10 tsutsui Exp $     */
+/*     $NetBSD: locore2.c,v 1.27 2002/08/02 18:19:59 soren Exp $       */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -89,7 +89,7 @@
 
 static void _vm_init __P((void));
 
-#if defined(DDB) && !defined(SYMTAB_SPACE)
+#if defined(DDB)
 static void _save_symtab __P((void));
 
 /*
@@ -134,7 +134,7 @@
        ssym = (char *)ehdr;
        esym = (char *)maxsym;
 }
-#endif /* DDB && !SYMTAB_SPACE */
+#endif /* DDB */
 
 /*
  * This function is called from _bootstrap() to initialize
@@ -156,7 +156,7 @@
         * if DDB is not part of this kernel, ignore the symbols.
         */
        esym = end + 4;
-#if defined(DDB) && !defined(SYMTAB_SPACE)
+#if defined(DDB)
        /* This will advance esym past the symbols. */
        _save_symtab();
 #endif



Home | Main Index | Thread Index | Old Index