aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_sym.h
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1998-06-28 00:55:02 +0000
committerDoug Rabson <dfr@FreeBSD.org>1998-06-28 00:55:02 +0000
commit6edf3d91441dede7bf4f33751b27bd527a1d6d05 (patch)
tree3b2a4302eec4b38224b1a51843c975a3f744f49e /sys/ddb/db_sym.h
parent7045d394b13c529c07def7a1fdcda7ae581018cb (diff)
downloadsrc-6edf3d91441dede7bf4f33751b27bd527a1d6d05.tar.gz
src-6edf3d91441dede7bf4f33751b27bd527a1d6d05.zip
Supply the symbol table as an argument to X_db_symbol_values (required for elf).
Notes
Notes: svn path=/head/; revision=37218
Diffstat (limited to 'sys/ddb/db_sym.h')
-rw-r--r--sys/ddb/db_sym.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/ddb/db_sym.h b/sys/ddb/db_sym.h
index c79218da5035..2ea27141d523 100644
--- a/sys/ddb/db_sym.h
+++ b/sys/ddb/db_sym.h
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_sym.h,v 1.13 1997/06/30 23:49:17 bde Exp $
+ * $Id: db_sym.h,v 1.14 1997/06/30 23:54:49 bde Exp $
*/
#ifndef _DDB_DB_SYM_H_
@@ -101,7 +101,8 @@ db_sym_t X_db_search_symbol __P((db_symtab_t *symtab, db_addr_t off,
db_expr_t *diffp));
int X_db_sym_numargs __P((db_symtab_t *, db_sym_t, int *,
char **));
-void X_db_symbol_values __P((db_sym_t sym, char **namep,
+void X_db_symbol_values __P((db_symtab_t *symtab,
+ db_sym_t sym, char **namep,
db_expr_t *valuep));
#endif /* !_DDB_DB_SYM_H_ */