]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - cddl/contrib/dtracetoolkit/Proc/readdist.d
Clean up the handling of errors from vm_pager_get_pages(). Mostly, this
[FreeBSD/FreeBSD.git] / cddl / contrib / dtracetoolkit / Proc / readdist.d
1 #!/usr/sbin/dtrace -s
2 /*
3  * readdist.d - read distribution by process name. DTrace OneLiner.
4  *
5  * This is a DTrace OneLiner from the DTraceToolkit.
6  *
7  * $Id: readdist.d 3 2007-08-01 10:50:08Z brendan $
8  */
9
10 sysinfo:::readch { @dist[execname] = quantize(arg0); }