mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-10 07:39:25 -04:00
11 lines
279 B
D
Executable File
11 lines
279 B
D
Executable File
#!/usr/sbin/dtrace -s
|
|
/*
|
|
* newproc.d - snoop new processes as they are executed. DTrace OneLiner.
|
|
*
|
|
* This is a DTrace OneLiner from the DTraceToolkit.
|
|
*
|
|
* $Id: newproc.d,v 1.1.1.1 2015/09/30 22:01:09 christos Exp $
|
|
*/
|
|
|
|
proc:::exec-success { trace(curpsinfo->pr_psargs); }
|