diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-02-07 06:18:49 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-02-07 06:18:49 +0000 |
commit | 4adf5e1ea6afb967ddfa4424a937c15e091ff561 (patch) | |
tree | 12f9f805f05c243ab4fef9f26b330a8c8c4eaf23 /sys/ddb/db_sym.c | |
parent | 25ce944623192ed7381bcde92621ac9027e242a7 (diff) |
necessary support for kernfs.
Diffstat (limited to 'sys/ddb/db_sym.c')
-rw-r--r-- | sys/ddb/db_sym.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index 935ea8b09a1..577f3de7e8c 100644 --- a/sys/ddb/db_sym.c +++ b/sys/ddb/db_sym.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_sym.c,v 1.16 1996/08/23 19:53:48 niklas Exp $ */ +/* $OpenBSD: db_sym.c,v 1.17 1997/02/07 06:18:48 mickey Exp $ */ /* $NetBSD: db_sym.c,v 1.12 1996/02/05 01:57:15 christos Exp $ */ /* @@ -76,9 +76,9 @@ db_add_symbol_table(start, end, name, ref, rend) new->start = start; new->end = end; - new->rend = rend; new->name = name; - new->private = ref; + new->rstart = ref; + new->private = rend; new->id = db_nsymtabs; TAILQ_INSERT_TAIL(&db_symtabs, new, list); @@ -391,3 +391,11 @@ db_sym_numargs(sym, nargp, argnames) { return X_db_sym_numargs(db_last_symtab, sym, nargp, argnames); } + +void +db_stub_xh(sym, xh) + db_symtab_t sym; + struct exec *xh; +{ + X_db_stub_xh(sym, xh); +} |