summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2009-03-16 14:21:52 +1000
committerddomingo <ddomingo@redhat.com>2009-03-16 14:21:52 +1000
commitb94a533da01cf4a66c7925f095659fb5732a23b3 (patch)
treea4dc1b493c0a1d3c2b825e3e15145a690f6d81dc
parent3214f0aa1ca69297cfbffb4616c70c8118c20b5f (diff)
downloadsystemtap-steved-b94a533da01cf4a66c7925f095659fb5732a23b3.tar.gz
systemtap-steved-b94a533da01cf4a66c7925f095659fb5732a23b3.tar.xz
systemtap-steved-b94a533da01cf4a66c7925f095659fb5732a23b3.zip
fixed format of non-grabbable comments (for Tapset Reference Guide), added tapsetdescription for man page generator (in development)
-rw-r--r--tapset/process.stp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tapset/process.stp b/tapset/process.stp
index ca49aa67..e39f740a 100644
--- a/tapset/process.stp
+++ b/tapset/process.stp
@@ -5,7 +5,9 @@
// redistribute it and/or modify it under the terms of the GNU General
// Public License (GPL); either version 2, or (at your option) any
// later version.
-
+// <tapsetdescription>
+// This family of probe points is used to probe process-related activities.
+// </tapsetdescription>
function _IS_ERR:long(ptr:long) %{ /* pure */
THIS->__retvalue = IS_ERR((const void *)(long)THIS->ptr);