aboutsummaryrefslogtreecommitdiff
path: root/Mem/minfbyproc.d
blob: 4d7316c5f09b2d2859040a63c7060a004c4a8c62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/sbin/dtrace -s
/*
 * minfbyproc.d - minor faults by process name. DTrace OneLiner.
 *
 * This is a DTrace OneLiner from the DTraceToolkit.
 *
 * $Id: minfbyproc.d 3 2007-08-01 10:50:08Z brendan $
 */

vminfo:::as_fault { @mem[execname] = sum(arg0); }