diff options
author | Stan Cox <scox@redhat.com> | 2009-03-24 16:13:18 -0400 |
---|---|---|
committer | Stan Cox <scox@redhat.com> | 2009-03-24 16:15:50 -0400 |
commit | 8d200822a397e6e286905e4d79d9b9695c835bd4 (patch) | |
tree | 1401629bc940721b200bd49fb8163432e0dd405c /translate.cxx | |
parent | 49b50ec6c2b45456d33d3fa145ccd3adfe4c528b (diff) | |
parent | ccc11a14c5117fcee425d53f00f0b871ac727728 (diff) | |
download | systemtap-steved-8d200822a397e6e286905e4d79d9b9695c835bd4.tar.gz systemtap-steved-8d200822a397e6e286905e4d79d9b9695c835bd4.tar.xz systemtap-steved-8d200822a397e6e286905e4d79d9b9695c835bd4.zip |
Remove debugging line.
* dtrace: Remove debugging line.
Diffstat (limited to 'translate.cxx')
-rw-r--r-- | translate.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/translate.cxx b/translate.cxx index 40bb82c2..798d52fe 100644 --- a/translate.cxx +++ b/translate.cxx @@ -4826,7 +4826,7 @@ emit_symbol_data (systemtap_session& s) if (pending_interrupts) return; off = dwfl_getmodules (dwfl, &dump_unwindsyms, (void *) &ctx, 0); } - while (off > 0); + while (off > 0 && !ctx.undone_unwindsym_modules.empty()); dwfl_assert("dwfl_getmodules", off == 0); } dwfl_end(dwfl); @@ -4864,7 +4864,7 @@ emit_symbol_data (systemtap_session& s) if (pending_interrupts) return; off = dwfl_getmodules (dwfl, &dump_unwindsyms, (void *) &ctx, 0); } - while (off > 0); + while (off > 0 && !ctx.undone_unwindsym_modules.empty()); dwfl_assert("dwfl_getmodules", off == 0); } dwfl_end(dwfl); |