diff options
author | ddomingo <ddomingo@redhat.com> | 2008-09-15 13:53:32 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2008-09-15 13:53:32 +1000 |
commit | 58b5c08a69fa298a92ead6d9384415ff750ea2ef (patch) | |
tree | e6069a6944ccf0bcb5e9884104d3819121896dfb /elaborate.cxx | |
parent | 4ef55e8308f34b73d6a0a69850900ae0d06499ce (diff) | |
parent | 8b524b8e33e94007b15f33546819056b56435cf2 (diff) | |
download | systemtap-steved-58b5c08a69fa298a92ead6d9384415ff750ea2ef.tar.gz systemtap-steved-58b5c08a69fa298a92ead6d9384415ff750ea2ef.tar.xz systemtap-steved-58b5c08a69fa298a92ead6d9384415ff750ea2ef.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'elaborate.cxx')
-rw-r--r-- | elaborate.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/elaborate.cxx b/elaborate.cxx index 552ef338..b476948b 100644 --- a/elaborate.cxx +++ b/elaborate.cxx @@ -1147,6 +1147,8 @@ semantic_pass_symbols (systemtap_session& s) // Keep unread global variables for probe end value display. void add_global_var_display (systemtap_session& s) { + if (s.listing_mode) return; // avoid end probe in listings_mode + varuse_collecting_visitor vut; for (unsigned i=0; i<s.probes.size(); i++) { |