summaryrefslogtreecommitdiffstats
path: root/tapset/nd_syscalls.stp
diff options
context:
space:
mode:
authorPrzemyslaw Pawelczyk <przemyslaw@pawelczyk.it>2009-05-22 16:31:15 +0200
committerJosh Stone <jistone@redhat.com>2009-05-22 12:21:49 -0700
commit8b09a1a4620cd8eac7d6df65bda799f5d4bcfe2b (patch)
treee8bd7898580692ca0810bb7bec027353eb1aaf37 /tapset/nd_syscalls.stp
parentbf4b8ae2b55776433785ee77c5a3985b63364a87 (diff)
downloadsystemtap-steved-8b09a1a4620cd8eac7d6df65bda799f5d4bcfe2b.tar.gz
systemtap-steved-8b09a1a4620cd8eac7d6df65bda799f5d4bcfe2b.tar.xz
systemtap-steved-8b09a1a4620cd8eac7d6df65bda799f5d4bcfe2b.zip
Remove return probes for exit[_group] in nd_syscalls.stp.
Analogue of commit 39a8b0bc. Signed-off-by: Josh Stone <jistone@redhat.com>
Diffstat (limited to 'tapset/nd_syscalls.stp')
-rw-r--r--tapset/nd_syscalls.stp7
1 files changed, 4 insertions, 3 deletions
diff --git a/tapset/nd_syscalls.stp b/tapset/nd_syscalls.stp
index b7172c0c..aa6ad694 100644
--- a/tapset/nd_syscalls.stp
+++ b/tapset/nd_syscalls.stp
@@ -832,7 +832,8 @@ probe nd_syscall.exit = kprobe.function("do_exit")
status = int_arg(1)
argstr = sprint(status)
}
-probe nd_syscall.exit.return = end {}
+# sys_exit() never returns, and is blacklisted for return probes,
+# so no alias here. See bz6588.
# exit_group _________________________________________________
# void sys_exit_group(int error_code)
@@ -846,8 +847,8 @@ probe nd_syscall.exit_group = kprobe.function("sys_exit_group")
status = int_arg(1)
argstr = sprint(status)
}
-
-probe nd_syscall.exit_group.return = end {}
+# sys_exit_group() never returns, and is blacklisted for return probes,
+# so no alias here. See bz6588.
%(arch != "x86_64" %?
# fadvise64 __________________________________________________