diff options
author | dsmith <dsmith> | 2007-11-15 22:08:06 +0000 |
---|---|---|
committer | dsmith <dsmith> | 2007-11-15 22:08:06 +0000 |
commit | 3b0c565c2b75d777c3993f0284185b5aa4c3528d (patch) | |
tree | c11e6b717a62f06cf6b96947095bb5f16ec498d2 /translate.cxx | |
parent | 1cc094f069ba3d797cdba5df75a2de06cf10ba93 (diff) | |
download | systemtap-steved-3b0c565c2b75d777c3993f0284185b5aa4c3528d.tar.gz systemtap-steved-3b0c565c2b75d777c3993f0284185b5aa4c3528d.tar.xz systemtap-steved-3b0c565c2b75d777c3993f0284185b5aa4c3528d.zip |
2007-11-15 David Smith <dsmith@redhat.com>
* tapsets.cxx (mark_derived_probe::initialize_probe_context_vars):
Updated to work with latest LTTNG patch
patch-2.6.24-rc2-lttng-0.10-pre23.tar.bz2.
(mark_derived_probe_group::emit_module_decls): Ditto.
(mark_derived_probe_group::emit_module_init): Ditto.
(mark_derived_probe_group::emit_module_exit): Ditto.
* translate.cxx (c_unparser::emit_common_header): Ditto.
Diffstat (limited to 'translate.cxx')
-rw-r--r-- | translate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate.cxx b/translate.cxx index d3e76108..27b28d5f 100644 --- a/translate.cxx +++ b/translate.cxx @@ -860,7 +860,7 @@ c_unparser::emit_common_header () o->newline() << "const char *last_stmt;"; o->newline() << "struct pt_regs *regs;"; o->newline() << "struct kretprobe_instance *pi;"; - o->newline() << "va_list mark_va_list;"; + o->newline() << "va_list *mark_va_list;"; o->newline() << "void *data;"; o->newline() << "#ifdef STP_TIMING"; o->newline() << "Stat *statp;"; |