diff options
author | Tim Moore <timoore@redhat.com> | 2009-12-21 17:53:06 +0100 |
---|---|---|
committer | Tim Moore <timoore@redhat.com> | 2009-12-21 17:53:06 +0100 |
commit | 2e6135317db22a3c8d58776f10d75414b9685225 (patch) | |
tree | 5ee08c296fddf8f681b065ac9b3b1383866da915 /tapsets.cxx | |
parent | 75dfa5cb9b3584995f9e634a6e769b8a1576bc0d (diff) | |
parent | ea549ffc2915aa58861637472b12196222673fa2 (diff) | |
download | systemtap-steved-2e6135317db22a3c8d58776f10d75414b9685225.tar.gz systemtap-steved-2e6135317db22a3c8d58776f10d75414b9685225.tar.xz systemtap-steved-2e6135317db22a3c8d58776f10d75414b9685225.zip |
Merge remote branch 'origin/master'
Diffstat (limited to 'tapsets.cxx')
-rw-r--r-- | tapsets.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapsets.cxx b/tapsets.cxx index a5e2c7a0..e14cc496 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -3429,7 +3429,7 @@ dwarf_derived_probe_group::emit_module_init (systemtap_session& s) s.op->newline() << "for (i=0; i<" << probes_by_module.size() << "; i++) {"; s.op->newline(1) << "struct stap_dwarf_probe *sdp = & stap_dwarf_probes[i];"; s.op->newline() << "struct stap_dwarf_kprobe *kp = & stap_dwarf_kprobes[i];"; - s.op->newline() << "unsigned long relocated_addr = _stp_module_relocate (sdp->module, sdp->section, sdp->address);"; + s.op->newline() << "unsigned long relocated_addr = _stp_module_relocate (sdp->module, sdp->section, sdp->address, NULL);"; s.op->newline() << "if (relocated_addr == 0) continue;"; // quietly; assume module is absent s.op->newline() << "probe_point = sdp->pp;"; // for error messages s.op->newline() << "if (sdp->return_p) {"; |