[Bug uprobes/6841] system-wide utrace syscall tracing script don't respond signal
mhiramat at redhat dot com
sourceware-bugzilla@sourceware.org
Thu Aug 14 14:36:00 GMT 2008
------- Additional Comments From mhiramat at redhat dot com 2008-08-14 14:35 -------
I narrowed it down to the following script:
---
#! stap
global proc
probe process("/usr/libexec/systemtap/stapio").syscall {
proc[pid()] <<< 1
}
probe end {
foreach(p+ in proc) {
printf("pid(%d) issues syscall %d times\n",
p, @sum(proc[p]))
}
}
---
--
http://sourceware.org/bugzilla/show_bug.cgi?id=6841
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the Systemtap
mailing list