diff options
author | Bryan Cantrill <bryan@joyent.com> | 2013-04-03 16:20:04 +0000 |
---|---|---|
committer | Bryan Cantrill <bryan@joyent.com> | 2013-04-03 16:20:04 +0000 |
commit | 6a3145c68bcccb33eeaff3d791498aca4a96d87b (patch) | |
tree | bc80bb4dd83999a8ffa2d0ccf093e68a8e06a9f5 /usr/src | |
parent | 849ebfb46ba4703ce0d6c472e628c86055c6ec7e (diff) | |
download | illumos-joyent-6a3145c68bcccb33eeaff3d791498aca4a96d87b.tar.gz |
OS-2070 mdb_v8 should autoconfigure based on DYNSYM, not SYMTAB
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/cmd/mdb/common/modules/v8/mdb_v8_cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/cmd/mdb/common/modules/v8/mdb_v8_cfg.c b/usr/src/cmd/mdb/common/modules/v8/mdb_v8_cfg.c index 42d9e1a813..1f0b02689d 100644 --- a/usr/src/cmd/mdb/common/modules/v8/mdb_v8_cfg.c +++ b/usr/src/cmd/mdb/common/modules/v8/mdb_v8_cfg.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2012, Joyent, Inc. All rights reserved. + * Copyright (c) 2013, Joyent, Inc. All rights reserved. */ /* @@ -36,7 +36,7 @@ static int v8cfg_target_iter(v8_cfg_t *cfgp, int (*func)(mdb_symbol_t *, void *), void *arg) { - return (mdb_symbol_iter(MDB_OBJ_EVERY, MDB_SYMTAB, + return (mdb_symbol_iter(MDB_OBJ_EVERY, MDB_DYNSYM, MDB_BIND_GLOBAL | MDB_TYPE_OBJECT | MDB_TYPE_FUNC, func, arg)); } |