creatbyproc.d revision 235368
1139749Simp#!/usr/sbin/dtrace -s
2116491Sharti/*
3116491Sharti * creatbyproc.d - file creat()s by process name. DTrace OneLiner.
4116491Sharti *
5116491Sharti * This is a DTrace OneLiner from the DTraceToolkit.
6116491Sharti *
7116491Sharti * $Id: creatbyproc.d 3 2007-08-01 10:50:08Z brendan $
8116491Sharti */
9116491Sharti
10116491Shartisyscall::creat*:entry { printf("%s %s", execname, copyinstr(arg0)); }
11116491Sharti