blob: d0faa75556e4a9312a930e3e4e16a3e1314f1df4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/sbin/dtrace -s
/*
* syscallbyproc.d - report on syscalls by process name . DTrace OneLiner.
*
* This is a DTrace OneLiner from the DTraceToolkit.
*
* $Id: syscallbyproc.d 3 2007-08-01 10:50:08Z brendan $
*/
syscall:::entry { @num[execname] = count(); }
|