1#!/usr/sbin/dtrace -s
2/*
3 * modcalls.d - kernel function calls by module. DTrace OneLiner.
4 *
5 * This is a DTrace OneLiner from the DTraceToolkit.
6 *
7 * 09-Jan-2006  Brendan Gregg   Created this.
8 */
9
10fbt:::entry { @calls[probemod] = count(); }
11