summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.exelib/lib.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.exelib/lib.stp')
-rw-r--r--testsuite/systemtap.exelib/lib.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.exelib/lib.stp b/testsuite/systemtap.exelib/lib.stp
index 0151282e..3fdc6db9 100644
--- a/testsuite/systemtap.exelib/lib.stp
+++ b/testsuite/systemtap.exelib/lib.stp
@@ -6,7 +6,7 @@ probe process(@1).function("main") {
}
probe process(@1).function("main_func") {
- printf("main_func\n");
+ printf("main_func %d\n", $foo);
}
probe process(@2).function("lib_main") {
@@ -14,5 +14,5 @@ probe process(@2).function("lib_main") {
}
probe process(@2).function("lib_func") {
- printf("lib_func\n");
+ printf("lib_func %d\n", $bar);
}