1235368Sgnn#!/usr/sbin/dtrace -s
2235368Sgnn/*
3235368Sgnn * syscallbysysc.d - report on syscalls by syscall. DTrace OneLiner.
4235368Sgnn *
5235368Sgnn * This is a DTrace OneLiner from the DTraceToolkit.
6235368Sgnn *
7235368Sgnn * $Id: syscallbysysc.d 3 2007-08-01 10:50:08Z brendan $
8235368Sgnn */
9235368Sgnn
10235368Sgnnsyscall:::entry { @num[probefunc] = count(); }
11