From 7a18a12684f498929b5938ceb18f66b18d2e1fe3 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Tue, 29 Sep 2009 14:09:32 -0400 Subject: tapset docs cleanup Several problems: some invalid 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. --- tapset/context-unwind.stp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tapset/context-unwind.stp') 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 print_stack(backtrace()), + * 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())) - * Works only for return probes at this time. + * 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. - * Works only for return probes at this time. + * Works only for return probes at this time. */ function caller_addr:long () %{ /* pure */ if (CONTEXT->pi) -- cgit