summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorMark Wielaard <mjw@redhat.com>2008-12-10 20:39:45 +0100
committerMark Wielaard <mjw@redhat.com>2008-12-10 20:39:45 +0100
commitd2f4d7286629da6e9f1b844beefb141a4d3ef2c3 (patch)
treeffcff9ea678de1196ad1d95a3ee6880eaf39e3df /tapsets.cxx
parente8318a92c7b07579b89da5ff6fef782ce5d2b58c (diff)
downloadsystemtap-steved-d2f4d7286629da6e9f1b844beefb141a4d3ef2c3.tar.gz
systemtap-steved-d2f4d7286629da6e9f1b844beefb141a4d3ef2c3.tar.xz
systemtap-steved-d2f4d7286629da6e9f1b844beefb141a4d3ef2c3.zip
PR6866: First pass at translating addresses to symbol names through vma.
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tapsets.cxx b/tapsets.cxx
index 4d9a021d..9fe1d236 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -6800,7 +6800,7 @@ utrace_derived_probe_group::emit_module_decls (systemtap_session& s)
// Emit a "fake" probe decl that is really a hook for to get
// our vm_callback called.
string path = it->first;
- s.op->newline() << "#ifdef DEBUG_TASK_FINDER_VMA";
+ s.op->newline() << "#ifdef STP_NEED_TASK_FINDER_VMA";
emit_vm_callback_probe_decl (s, true, path, (int64_t)0,
"__stp_tf_vm_cb");
s.op->newline() << "#endif";
@@ -6821,7 +6821,7 @@ utrace_derived_probe_group::emit_module_decls (systemtap_session& s)
{
// Emit a "fake" probe decl that is really a hook for to get
// our vm_callback called.
- s.op->newline() << "#ifdef DEBUG_TASK_FINDER_VMA";
+ s.op->newline() << "#ifdef STP_NEED_TASK_FINDER_VMA";
emit_vm_callback_probe_decl (s, false, "", it->first,
"__stp_tf_vm_cb");
s.op->newline() << "#endif";