summaryrefslogtreecommitdiffstats
path: root/runtime/task_finder_vma.c
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-09-01 13:44:53 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-09-01 13:44:53 -0400
commit474c9b2c70e8ae6d4b811bc0ee5ce1319592892d (patch)
tree973cfbc3afd3b304398d056f491099d8d595e763 /runtime/task_finder_vma.c
parent30f926f0b0a198dd416ea735353e852a7ee79d69 (diff)
downloadsystemtap-steved-474c9b2c70e8ae6d4b811bc0ee5ce1319592892d.tar.gz
systemtap-steved-474c9b2c70e8ae6d4b811bc0ee5ce1319592892d.tar.xz
systemtap-steved-474c9b2c70e8ae6d4b811bc0ee5ce1319592892d.zip
fix #if->#ifdef DEBUG_TASK_FINDER_VMA
Diffstat (limited to 'runtime/task_finder_vma.c')
-rw-r--r--runtime/task_finder_vma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/task_finder_vma.c b/runtime/task_finder_vma.c
index c06b3db0..8c60175e 100644
--- a/runtime/task_finder_vma.c
+++ b/runtime/task_finder_vma.c
@@ -133,7 +133,7 @@ __stp_tf_add_vma(struct task_struct *tsk, unsigned long addr,
hlist_for_each_entry(entry, node, head, hlist) {
if (tsk->pid == entry->pid
&& addr == entry->addr) {
-#if DEBUG_TASK_FINDER_VMA
+#ifdef DEBUG_TASK_FINDER_VMA
printk(KERN_NOTICE
"vma (pid: %d, vm_start: 0x%lx) present?\n",
tsk->pid, vma->vm_start);