]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - cddl/contrib/dtracetoolkit/Proc/creatbyproc.d
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / cddl / contrib / dtracetoolkit / Proc / creatbyproc.d
1 #!/usr/sbin/dtrace -s
2 /*
3  * creatbyproc.d - file creat()s by process name. DTrace OneLiner.
4  *
5  * This is a DTrace OneLiner from the DTraceToolkit.
6  *
7  * $Id: creatbyproc.d 3 2007-08-01 10:50:08Z brendan $
8  */
9
10 syscall::creat*:entry { printf("%s %s", execname, copyinstr(arg0)); }