diff options
author | Stan Cox <scox@redhat.com> | 2008-08-04 16:24:12 -0400 |
---|---|---|
committer | Stan Cox <scox@redhat.com> | 2008-08-04 16:24:12 -0400 |
commit | 2cb3fe2688a7713dc7d5a396a4d31ab65f99513c (patch) | |
tree | c6c43c73b80d58d1b63d0709b47c22f151f85e85 /doc/langref.tex | |
parent | 8cd1eacaab66a32b506f93d98fc72af03c32a039 (diff) | |
download | systemtap-steved-2cb3fe2688a7713dc7d5a396a4d31ab65f99513c.tar.gz systemtap-steved-2cb3fe2688a7713dc7d5a396a4d31ab65f99513c.tar.xz systemtap-steved-2cb3fe2688a7713dc7d5a396a4d31ab65f99513c.zip |
Add $$vars, $$parms, $$locals
Diffstat (limited to 'doc/langref.tex')
-rw-r--r-- | doc/langref.tex | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/langref.tex b/doc/langref.tex index e2c630d4..a1b694f6 100644 --- a/doc/langref.tex +++ b/doc/langref.tex @@ -779,6 +779,17 @@ may be repeated to follow additional levels of pointers. \texttt{\$var{[}N]} indexes into an array. The index is given with a literal number. +\texttt{\$\$vars} expands to a character string that is equivalent to +sprintf("parm1=\%x ... parmN=\%x var1=\%x ... varN=\%x", parm1, ..., parmN, +var1, ..., varN) + +\texttt{\$\$locals} expands to a character string that is equivalent to +sprintf("var1=\%x ... varN=\%x", var1, ..., varN) + +\texttt{\$\$parms} expands to a character string that is equivalent to +sprintf("parm1=\%x ... parmN=\%x", parm1, ..., parmN) + + \subsubsection{kernel.function, module().function} \index{kernel.function} \index{module().function} |