summaryrefslogtreecommitdiffstats
path: root/tapset/context-symbols.stp
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2009-03-17 15:13:23 +1000
committerddomingo <ddomingo@redhat.com>2009-03-17 15:13:23 +1000
commit83b85c2b0be729352bae4ea204d814b377b32fcf (patch)
tree07faccf4fa2e701348c52fe374d3a5b96eb05897 /tapset/context-symbols.stp
parent11f44635b6964dd7a7753da6722fa4750573d0ca (diff)
downloadsystemtap-steved-83b85c2b0be729352bae4ea204d814b377b32fcf.tar.gz
systemtap-steved-83b85c2b0be729352bae4ea204d814b377b32fcf.tar.xz
systemtap-steved-83b85c2b0be729352bae4ea204d814b377b32fcf.zip
minor edits
Diffstat (limited to 'tapset/context-symbols.stp')
-rw-r--r--tapset/context-symbols.stp11
1 files changed, 4 insertions, 7 deletions
diff --git a/tapset/context-symbols.stp b/tapset/context-symbols.stp
index 4a08ec60..babaa3ef 100644
--- a/tapset/context-symbols.stp
+++ b/tapset/context-symbols.stp
@@ -22,8 +22,9 @@
* @stk: String with list of hexidecimal addresses. (FIXME)
*
* Perform a symbolic lookup of the addresses in the given string,
- * which is assumed to be the result of a prior call to
+ * which is assumed to be the result of a prior call to
* <command>backtrace()</command>.
+ *
* Print one line per address, including the address, the
* name of the function containing the address, and an estimate of
* its position within that function. Return nothing.
@@ -40,9 +41,7 @@ function print_stack(stk:string) %{
%}
/**
- * sfunction probefunc - Function probed
- *
- * Return the probe point's function name, if known.
+ * sfunction probefunc - Return the probe point's function name, if known.
*/
function probefunc:string () %{ /* pure */
char *ptr, *start;
@@ -76,9 +75,7 @@ function probefunc:string () %{ /* pure */
%}
/**
- * sfunction probemod - Module probed
- *
- * Return the probe point's module name, if known.
+ * sfunction probemod - Return the probe point's module name, if known.
*/
function probemod:string () %{ /* pure */
char *ptr, *start;