diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2009-09-29 14:09:32 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-09-29 14:09:32 -0400 |
commit | 7a18a12684f498929b5938ceb18f66b18d2e1fe3 (patch) | |
tree | e2ef22aac08b85a54094445f7ec0509dbd45e304 /tapset/context-unwind.stp | |
parent | f3d75239e30b5ba55936d9340b0e95caa698034b (diff) | |
download | systemtap-steved-7a18a12684f498929b5938ceb18f66b18d2e1fe3.tar.gz systemtap-steved-7a18a12684f498929b5938ceb18f66b18d2e1fe3.tar.xz systemtap-steved-7a18a12684f498929b5938ceb18f66b18d2e1fe3.zip |
tapset docs cleanup
Several problems: some invalid <command> etc. directives
in the tapset embedded docs; some analysis about the
non-generation of the pdf; some cleanup of the generated
man pages.
* configure.ac (BUILD_PDFREFDOCS): Correct condition typo, but still
leave disabled.
* doc/SystemTap_Tapset_Reference/Makefile.am (XMLTOMANPARMS): Add,
to disable noise "AUTHORS" / "COPYRIGHT" sections.
* tapset/*.stp: Removed several docbook-y markup that is not valid
in kerneldoc.
Diffstat (limited to 'tapset/context-unwind.stp')
-rw-r--r-- | tapset/context-unwind.stp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tapset/context-unwind.stp b/tapset/context-unwind.stp index 33431fd0..741031c0 100644 --- a/tapset/context-unwind.stp +++ b/tapset/context-unwind.stp @@ -23,7 +23,7 @@ /** * sfunction print_backtrace - Print stack back trace * - * Equivalent to <command>print_stack(backtrace())</command>, + * Equivalent to print_stack(backtrace()), * except that deeper stack nesting may be supported. Return nothing. */ function print_backtrace () %{ @@ -66,7 +66,7 @@ function task_backtrace:string (task:long) %{ /* pure */ * Return the address and name of the calling function. * This is equivalent to calling: * sprintf("%s 0x%x", symname(caller_addr(), caller_addr())) - * <emphasis>Works only for return probes at this time.</emphasis> + * Works only for return probes at this time. */ function caller:string() { return sprintf("%s 0x%x", symname(caller_addr()), caller_addr()); @@ -76,7 +76,7 @@ function caller:string() { * sfunction caller_addr - Return caller address * * Return the address of the calling function. - * <emphasis> Works only for return probes at this time.</emphasis> + * Works only for return probes at this time. */ function caller_addr:long () %{ /* pure */ if (CONTEXT->pi) |