This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug uprobes/6841] system-wide utrace syscall tracing script don't respond signal


------- 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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]