mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-11 08:07:30 -04:00
11 lines
293 B
D
Executable File
11 lines
293 B
D
Executable File
#!/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:07 christos Exp $
|
|
*/
|
|
|
|
syscall::creat*:entry { printf("%s %s", execname, copyinstr(arg0)); }
|