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

This commit is contained in:
soren 2002-08-02 18:19:58 +00:00
parent c760d33b3e
commit 8e607cdca8
3 changed files with 12 additions and 12 deletions

View File

@ -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 @@ void _bootstrap __P((void));
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 @@ _save_symtab()
ssym = (char *)ehdr;
esym = (char *)maxsym;
}
#endif /* DDB && !SYMTAB_SPACE */
#endif /* DDB */
/*
* This function is called from _bootstrap() to initialize
@ -174,7 +174,7 @@ _vm_init()
* 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

View File

@ -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 @@ void _bootstrap __P((void));
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 @@ _save_symtab()
ssym = (char *)ehdr;
esym = (char *)maxsym;
}
#endif /* DDB && !SYMTAB_SPACE */
#endif /* DDB */
/*
* This function is called from _bootstrap() to initialize
@ -189,7 +189,7 @@ _vm_init()
* 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

View File

@ -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 @@ void _bootstrap __P((void));
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 @@ _save_symtab()
ssym = (char *)ehdr;
esym = (char *)maxsym;
}
#endif /* DDB && !SYMTAB_SPACE */
#endif /* DDB */
/*
* This function is called from _bootstrap() to initialize
@ -156,7 +156,7 @@ _vm_init()
* 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