diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-09-01 13:44:53 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-09-01 13:44:53 -0400 |
commit | 474c9b2c70e8ae6d4b811bc0ee5ce1319592892d (patch) | |
tree | 973cfbc3afd3b304398d056f491099d8d595e763 /runtime/task_finder_vma.c | |
parent | 30f926f0b0a198dd416ea735353e852a7ee79d69 (diff) | |
download | systemtap-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.c | 2 |
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); |