summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall/sys.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.syscall/sys.stp')
-rwxr-xr-xtestsuite/systemtap.syscall/sys.stp10
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/systemtap.syscall/sys.stp b/testsuite/systemtap.syscall/sys.stp
index e3564a15..79c7ff57 100755
--- a/testsuite/systemtap.syscall/sys.stp
+++ b/testsuite/systemtap.syscall/sys.stp
@@ -1,4 +1,4 @@
-global indent, indent_str, entry
+global indent, indent_str, entry_p
probe begin {
indent = 0
@@ -13,22 +13,22 @@ probe begin {
probe syscall.* ? {
if (pid() == target()) {
- if (entry) printf("\n")
+ if (entry_p) printf("\n")
printf("%s%s: %s (%s) = ", indent_str[indent], execname(), name, argstr)
# printf("%s%s: %s (%s) = ", indent_str[indent], execname(), probefunc(), argstr)
indent++
- entry = 1
+ entry_p = 1
}
}
probe syscall.*.return ? {
if (pid() == target()) {
if (indent) indent--
- if (entry)
+ if (entry_p)
printf("%s\n", retstr)
else
printf("%s%s\n", indent_str[indent],retstr)
- entry = 0
+ entry_p = 0
}
}