1235368Sgnn#!/usr/sbin/dtrace -s
2235368Sgnn/*
3235368Sgnn * creatbyproc.d - file creat()s by process name. DTrace OneLiner.
4235368Sgnn *
5235368Sgnn * This is a DTrace OneLiner from the DTraceToolkit.
6235368Sgnn *
7235368Sgnn * $Id: creatbyproc.d 3 2007-08-01 10:50:08Z brendan $
8235368Sgnn */
9235368Sgnn
10235368Sgnnsyscall::creat*:entry { printf("%s %s", execname, copyinstr(arg0)); }
11