1N/A#!/usr/sbin/dtrace -s
1N/A/*
1N/A * readdist.d - read distribution by process name. DTrace OneLiner.
1N/A *
1N/A * This is a DTrace OneLiner from the DTraceToolkit.
1N/A *
1N/A * $Id: readdist.d 3 2007-08-01 10:50:08Z brendan $
1N/A */
1N/A
1N/Asysinfo:::readch { @dist[execname] = quantize(arg0); }