summaryrefslogtreecommitdiff
path: root/sys/ddb/db_sym.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-08-16 10:12:39 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-08-16 10:12:39 +0000
commita10a82bebe31f475efe38b631e78451332a3fd0d (patch)
tree9fd7e0cd3d9f3298ec95c2530de6cefa45835ec0 /sys/ddb/db_sym.h
parent67b84ba47826a17ce352cc54299f0640c1d51bc5 (diff)
record real symtab end.
Diffstat (limited to 'sys/ddb/db_sym.h')
-rw-r--r--sys/ddb/db_sym.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/ddb/db_sym.h b/sys/ddb/db_sym.h
index 5fb6ffebe58..325fb546deb 100644
--- a/sys/ddb/db_sym.h
+++ b/sys/ddb/db_sym.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_sym.h,v 1.8 1996/08/16 06:13:03 mickey Exp $ */
+/* $OpenBSD: db_sym.h,v 1.9 1996/08/16 10:12:38 mickey Exp $ */
/* $NetBSD: db_sym.h,v 1.7 1996/02/05 01:57:16 christos Exp $ */
/*
@@ -44,7 +44,8 @@ typedef struct db_symtab {
char *name; /* symtab name */
u_int id; /* id */
char *start; /* symtab location */
- char *end;
+ char *end; /* end of symtab */
+ char *rend; /* real end (as it passed) */
char *private; /* optional machdep pointer */
} *db_symtab_t;
@@ -80,7 +81,7 @@ extern boolean_t db_qualify_ambiguous_names;
* Functions exported by the symtable module
*/
void db_sym_init __P((void));
-int db_add_symbol_table __P((char *, char *, char *, char *));
+int db_add_symbol_table __P((char *, char *, char *, char *, char *));
/* extend the list of symbol tables */
void db_del_symbol_table __P((char *));