summaryrefslogtreecommitdiffstats
path: root/sys/ddb
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1993-09-12 21:56:50 +0000
committerrgrimes <rgrimes@FreeBSD.org>1993-09-12 21:56:50 +0000
commit39522705b58b9a67bb5a011b5de681172a81bc78 (patch)
tree897be72a19d2481eb30c0a463c3c282e86484200 /sys/ddb
parent191a876a96ad48b17061d3c2edb10cf3e52e5ac1 (diff)
downloadFreeBSD-src-39522705b58b9a67bb5a011b5de681172a81bc78.zip
FreeBSD-src-39522705b58b9a67bb5a011b5de681172a81bc78.tar.gz
>From: rich@id.slip.bcm.tmc.edu.cdrom.com (Rich Murphey)
I'd like to be able to say: options "SYMTAB_SPACE=78000" # Kernel debugger symbol table size If this seems a reasonable interim solution for freebsd, here's the patch.. Rich
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_aout.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/ddb/db_aout.c b/sys/ddb/db_aout.c
index 88f4b03..160c593 100644
--- a/sys/ddb/db_aout.c
+++ b/sys/ddb/db_aout.c
@@ -26,6 +26,9 @@
/*
* HISTORY
* $Log: db_aout.c,v $
+ * Revision 1.1.1.1 1993/06/12 14:57:38 rgrimes
+ * Initial import, 0.1 + pk 0.2.4-B1
+ *
* Revision 1.1 1992/03/25 21:44:55 pace
* Initial revision
*
@@ -77,7 +80,10 @@
(sp = (struct nlist *)((symtab) + 1), \
ep = (struct nlist *)((char *)sp + *(symtab)))
+#ifndef SYMTAB_SPACE
#define SYMTAB_SPACE 63000
+#endif /*SYMTAB_SPACE*/
+
int db_symtabsize = SYMTAB_SPACE;
char db_symtab[SYMTAB_SPACE] = { 1 };
OpenPOWER on IntegriCloud