summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2008-06-27 10:50:32 -0500
committerDavid Smith <dsmith@redhat.com>2008-06-27 10:50:32 -0500
commit5e86a4eef7e29d89849d522bcdbe96e7a1e4b6b8 (patch)
treef6cce36ae9782ff242065075a12e7c6b91b56f66
parent40d7937063ee4d01c3f28ff785557ef080b08ca1 (diff)
downloadsystemtap-steved-5e86a4eef7e29d89849d522bcdbe96e7a1e4b6b8.tar.gz
systemtap-steved-5e86a4eef7e29d89849d522bcdbe96e7a1e4b6b8.tar.xz
systemtap-steved-5e86a4eef7e29d89849d522bcdbe96e7a1e4b6b8.zip
Fix bug in handling process(PID) probes.
2008-06-27 David Smith <dsmith@redhat.com> * tapsets.cxx (utrace_derived_probe_group::emit_module_decls): Fix bug in handling process(PID) probes.
-rw-r--r--ChangeLog5
-rw-r--r--tapsets.cxx2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 01ad6cb3..2777fce3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-27 David Smith <dsmith@redhat.com>
+
+ * tapsets.cxx (utrace_derived_probe_group::emit_module_decls): Fix
+ bug in handling process(PID) probes.
+
2008-06-24 K.Prasad <prasad@linux.vnet.ibm.com>
* tapset/vfs.stp: Deprecate probe points on old functions, namely
diff --git a/tapsets.cxx b/tapsets.cxx
index 38b075d0..a405cef0 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -5810,7 +5810,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";
- emit_vm_callback_probe_decl (s, false, NULL, it->first,
+ emit_vm_callback_probe_decl (s, false, "", it->first,
"__stp_tf_vm_cb");
s.op->newline() << "#endif";