diff options
author | kenistoj <kenistoj> | 2006-01-24 20:47:50 +0000 |
---|---|---|
committer | kenistoj <kenistoj> | 2006-01-24 20:47:50 +0000 |
commit | f10925a5b61a32ae45c7ad6946fdb53569616676 (patch) | |
tree | eb964c55253d0a773c6a71c483a9cb5a88deb4ef | |
parent | cbfbbf6996cbe3b9fe57ac2014aa7262bb6890d6 (diff) | |
download | systemtap-steved-f10925a5b61a32ae45c7ad6946fdb53569616676.tar.gz systemtap-steved-f10925a5b61a32ae45c7ad6946fdb53569616676.tar.xz systemtap-steved-f10925a5b61a32ae45c7ad6946fdb53569616676.zip |
Took sys_execve off the blacklist for return probes, now that RHEL4 U3
includes the fix for PR #1345.
-rw-r--r-- | tapsets.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tapsets.cxx b/tapsets.cxx index 89201cb2..835c426f 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -1987,8 +1987,7 @@ dwarf_query::blacklisted_p(string const & funcname, funcname == "notifier_call_chain" || filename_s == "kernel/kprobes.c" || 0 == fnmatch ("arch/*/kernel/kprobes.c", filename, 0) || - (has_return && (funcname == "sys_execve" || // bug #1345 - funcname == "sys_exit" || + (has_return && (funcname == "sys_exit" || funcname == "sys_groupexit"))) { if (sess.verbose) |