blob: dc6f24db0c7ed4a2b28797e985a4533bbc8eaaea (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/sbin/dtrace -s
/*
* readdist.d - read distribution by process name. DTrace OneLiner.
*
* This is a DTrace OneLiner from the DTraceToolkit.
*
* $Id: readdist.d,v 1.1.1.1 2015/09/30 22:01:09 christos Exp $
*/
sysinfo:::readch { @dist[execname] = quantize(arg0); }
|