From: Abegail Jakop Date: Thu, 10 Jul 2014 14:59:58 +0000 (-0400) Subject: stapprobes.3stap: edited supported probe points X-Git-Tag: release-2.6~91^2~20^2 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=af127b9fed48205c342a2cc093dd2168dc95de7f;p=systemtap.git stapprobes.3stap: edited supported probe points stapprobes.3stap: added process(PID).{function, mark, plt, provider} to the list of supported probe points under DWARF and USER-SPACE. --- diff --git a/man/stapprobes.3stap b/man/stapprobes.3stap index 294bfcada..e8934d8de 100644 --- a/man/stapprobes.3stap +++ b/man/stapprobes.3stap @@ -362,6 +362,10 @@ process("PATH").function("*").return process("PATH").function("myfun").label("foo") process("PATH").function("foo").callee("bar") process("PATH").function("foo").callees(DEPTH) +process(PID).function("NAME") +process(PID).function("myfun").label("foo") +process(PID).plt("NAME) +process(PID).statement("*@FILE.c:123") process(PID).statement(ADDRESS).absolute .ESAMPLE (See the USER-SPACE section below for more information on the process @@ -772,6 +776,8 @@ probed: .SAMPLE process("PATH").mark("LABEL") process("PATH").provider("PROVIDER").mark("LABEL") +process(PID).mark("LABEL") +process(PID).provider("PROVIDER").mark("LABEL") .ESAMPLE .PP A @@ -806,6 +812,9 @@ process("PATH").library("PATH").statement("*@FILE.c:123") process("PATH").function("*").return process("PATH").function("myfun").label("foo") process("PATH").function("foo").callee("bar") +process(PID).function("NAME") +process(PID).statement("*@FILE.c:123") +process(PID).plt("NAME") .ESAMPLE .PP