diff options
author | David Smith <dsmith@redhat.com> | 2008-04-14 12:22:53 -0500 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2008-04-14 12:22:53 -0500 |
commit | 775d51e5fb2f379fe4ae15dcbae8b17e4eab8805 (patch) | |
tree | 17d6946329f0e52b2201bd1fcda52d2069a731fd /translate.cxx | |
parent | b976b20e647b4c597cc78272c54dfa58655ac39c (diff) | |
download | systemtap-steved-775d51e5fb2f379fe4ae15dcbae8b17e4eab8805.tar.gz systemtap-steved-775d51e5fb2f379fe4ae15dcbae8b17e4eab8805.tar.xz systemtap-steved-775d51e5fb2f379fe4ae15dcbae8b17e4eab8805.zip |
2008-04-14 David Smith <dsmith@redhat.com>
* elaborate.h (struct derived_probe_group): Removed
emit_module_header virtual function.
* translate.cxx (c_unparser::emit_common_header): Removed calls to
emit_module_header function.
* tapsets.cxx (be_derived_probe>): Removed emit_module_header function.
(struct timer_derived_probe_group): Ditto.
(struct profile_derived_probe_group): Ditto.
(struct procfs_derived_probe_group): Ditto.
(struct hrtimer_derived_probe_group): Ditto.
(struct perfmon_derived_probe_group): Ditto.
(dwarf_derived_probe_group::emit_module_decls): Moved kernel check
back from deleted emit_module_header function.
(uprobe_derived_probe_group::emit_module_decls): Ditto.
(mark_derived_probe_group::join_group): Moved marker
kernel check (to a new embedded code section) from deleted
emit_module_header function.
Diffstat (limited to 'translate.cxx')
-rw-r--r-- | translate.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/translate.cxx b/translate.cxx index 776e6770..1b812ec1 100644 --- a/translate.cxx +++ b/translate.cxx @@ -849,10 +849,6 @@ translator_output::line () void c_unparser::emit_common_header () { - vector<derived_probe_group*> g = all_session_groups (*session); - for (unsigned i=0; i<g.size(); i++) - g[i]->emit_module_header (*session); - o->newline(); o->newline() << "typedef char string_t[MAXSTRINGLEN];"; o->newline(); |