blob: 7eb07bd865dafd3aca5c3faaf05e2d841b024a44 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/sbin/dtrace -s
/*
* lockbydist.d - lock distrib. by process name. DTrace OneLiner.
*
* This is a DTrace OneLiner from the DTraceToolkit.
*
* $Id: lockbydist.d,v 1.1.1.1 2015/09/30 22:01:09 christos Exp $
*/
lockstat:::adaptive-block { @time[execname] = quantize(arg1); }
|