From 2cb3fe2688a7713dc7d5a396a4d31ab65f99513c Mon Sep 17 00:00:00 2001 From: Stan Cox Date: Mon, 4 Aug 2008 16:24:12 -0400 Subject: Add $$vars, $$parms, $$locals --- stapprobes.5.in | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'stapprobes.5.in') diff --git a/stapprobes.5.in b/stapprobes.5.in index fcc44df1..24075248 100644 --- a/stapprobes.5.in +++ b/stapprobes.5.in @@ -329,6 +329,19 @@ may be repeated to follow more levels of pointers. $var[N] indexes into an array. The index is given with a literal number. +.TP +$$vars +expands to a character string that is equivalent to +sprintf("parm1=%x ... parmN=%x var1=%x ... varN=%x", parm1, ..., parmN, +var1, ..., varN) +.TP +$$locals +expands to a character string that is equivalent to +sprintf("var1=%x ... varN=%x", var1, ..., varN) +.TP +$$parms +expands to a character string that is equivalent to +sprintf("parm1=%x ... parmN=%x", parm1, ..., parmN) .PP For ".return" probes, context variables other than the "$return" value itself are only available for the function call parameters. -- cgit