From cec7293bd301b4737da7abe8d1b70b9689fd3f00 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Sat, 6 Sep 2008 10:25:28 -0400 Subject: PR6445: documentation, mopping up --- NEWS | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 5036cebb..ab035593 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,17 @@ * What's new +- Target process mode (stap -c CMD or -x PID) now implicitly restricts all + "process.*" probes to the given child process. (It does not effect + kernel.* or other probe types.) The CMD string is now executed directly, + rather than via a /bin/sh -c subshell. + + % stap -e 'probe process.syscall, process.end { + printf("%s %d %s\n", execname(), pid(), pp())}'\ + -c ls + ls 2323 process.syscall + ls 2323 process.syscall + ls 2323 process.end + - Probe listing mode is improved: "-L" lists available script-level variables % stap -L 'syscall.*open*' -- cgit