diff options
author | Jim Keniston <jkenisto@us.ibm.com> | 2008-06-04 16:16:31 -0700 |
---|---|---|
committer | Jim Keniston <jkenisto@us.ibm.com> | 2008-06-04 16:16:31 -0700 |
commit | 39a8b0bce28cf4ef8fda523ad9c4634692764134 (patch) | |
tree | 493b39fa6ff3df65c52b5d48d73ecc55c7147acd /tapset | |
parent | 65e47e92a9fd19e334873e8b88673ee76ad479c8 (diff) | |
download | systemtap-steved-39a8b0bce28cf4ef8fda523ad9c4634692764134.tar.gz systemtap-steved-39a8b0bce28cf4ef8fda523ad9c4634692764134.tar.xz systemtap-steved-39a8b0bce28cf4ef8fda523ad9c4634692764134.zip |
Fix PR 6588
Diffstat (limited to 'tapset')
-rw-r--r-- | tapset/syscalls.stp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tapset/syscalls.stp b/tapset/syscalls.stp index d394208f..cf824f67 100644 --- a/tapset/syscalls.stp +++ b/tapset/syscalls.stp @@ -630,7 +630,8 @@ probe syscall.exit = kernel.function("do_exit") { status = $code argstr = sprint($code) } -probe 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) @@ -640,8 +641,8 @@ probe syscall.exit_group = kernel.function("sys_exit_group") { status = $error_code argstr = sprint($error_code) } - -probe 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 __________________________________________________ |