summaryrefslogtreecommitdiff
path: root/external/cddl/dtracetoolkit/dist/Proc/creatbyproc.d
blob: eca751352599a6172f60f87fabe37e9b88922559 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/sbin/dtrace -s
/*
 * creatbyproc.d - file creat()s by process name. DTrace OneLiner.
 *
 * This is a DTrace OneLiner from the DTraceToolkit.
 *
 * $Id: creatbyproc.d,v 1.1.1.1 2015/09/30 22:01:09 christos Exp $
 */

syscall::creat*:entry { printf("%s %s", execname, copyinstr(arg0)); }