1#!/usr/sbin/dtrace -s
2/*
3 * lockbyproc.d - lock time by process name. DTrace OneLiner.
4 *
5 * This is a DTrace OneLiner from the DTraceToolkit.
6 *
7 * $Id: lockbyproc.d 3 2007-08-01 10:50:08Z brendan $
8 */
9
10lockstat:::adaptive-block { @time[execname] = sum(arg1); }
11