]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - cddl/contrib/dtracetoolkit/Proc/syscallbyproc.d
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / cddl / contrib / dtracetoolkit / Proc / syscallbyproc.d
1 #!/usr/sbin/dtrace -s
2 /*
3  * syscallbyproc.d - report on syscalls by process name . DTrace OneLiner.
4  *
5  * This is a DTrace OneLiner from the DTraceToolkit.
6  *
7  * $Id: syscallbyproc.d 3 2007-08-01 10:50:08Z brendan $
8  */
9
10 syscall:::entry { @num[execname] = count(); }