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.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.stp')
-rw-r--r-- | tapset/context.stp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/tapset/context.stp b/tapset/context.stp index 226e3ee5..14128589 100644 --- a/tapset/context.stp +++ b/tapset/context.stp @@ -182,11 +182,11 @@ function pp:string () %{ /* pure */ /* unprivileged */ %} /** - * sfunction registers_valid - Determines validity of <command>register()</command> and <command>u_register()</command> in current context. + * sfunction registers_valid - Determines validity of register() and u_register() in current context. * * Return 1 if register() and u_register() can be used * in the current context, or 0 otherwise. - * For example, <command>registers_valid()</command> returns 0 + * For example, registers_valid() returns 0 * when called from a begin or end probe. */ function registers_valid:long () %{ /* pure */ /* unprivileged */ @@ -210,12 +210,7 @@ function user_mode:long () %{ /* pure */ /* unprivileged */ } %} -/** - * sfunction is_return - Determines if probe point is a return probe. - * - * Return 1 if the probe point is a return probe. - * <emphasis>Deprecated.</emphasis> - */ + function is_return:long () %{ /* pure */ if (CONTEXT->pi) THIS->__retvalue = 1; |