[Bug tapsets/6525] need utrace task-finder-based pid->execname, pid->cwd-path-name tables
fche at redhat dot com
sourceware-bugzilla@sourceware.org
Mon Aug 4 16:45:00 GMT 2014
https://sourceware.org/bugzilla/show_bug.cgi?id=6525
--- Comment #14 from Frank Ch. Eigler <fche at redhat dot com> ---
e.g. approximately
cat > tapset/linux/pid2cmdline.stp
global __pid2cmdline%
function pid2cmdline(p) { if (p in __pid2cmdline) return __pid2cmdline[p] }
probe kprocess.exec_complete {
__pid2cmdline(tid() /* or pid? */) = cmdline_str()
}
^D
etc.
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the Systemtap
mailing list