diff options
author | ddomingo <ddomingo@redhat.com> | 2009-03-16 14:21:52 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2009-03-16 14:21:52 +1000 |
commit | bfa3d6708bb6ddcb27155ab3cc904b9c85a60e95 (patch) | |
tree | 69ebaa8760816004a2cc6357686d586e09eaf3a6 | |
parent | b94a533da01cf4a66c7925f095659fb5732a23b3 (diff) | |
download | systemtap-steved-bfa3d6708bb6ddcb27155ab3cc904b9c85a60e95.tar.gz systemtap-steved-bfa3d6708bb6ddcb27155ab3cc904b9c85a60e95.tar.xz systemtap-steved-bfa3d6708bb6ddcb27155ab3cc904b9c85a60e95.zip |
fixed format of non-grabbable comments (for Tapset Reference Guide), added tapsetdescription for man page generator (in development)
-rw-r--r-- | tapset/signal.stp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tapset/signal.stp b/tapset/signal.stp index 8fb6fe57..bde9160c 100644 --- a/tapset/signal.stp +++ b/tapset/signal.stp @@ -8,13 +8,15 @@ // Public License (GPL); either version 2, or (at your option) any // later version. // -// Note : Since there are so many signals sent to processes at any give -// point, it's better to filter the information according to the -// requirements. For example, filter only for a particular signal -// (if sig==2) or filter only for a particular process -// (if pid_name==stap). // - +// <tapsetdescription> +// This family of probe points is used to probe signal activities. +// Since there are so many signals sent to processes at any give +// point, it's advisable to filter the information according to the +// requirements. For example, filter only for a particular signal +// (if sig==2) or filter only for a particular process +// (if pid_name==stap). +// </tapsetdescription> /** * probe signal.send- Fires when a system call or kernel function sends a signal to a process. |