summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2009-03-16 14:21:51 +1000
committerddomingo <ddomingo@redhat.com>2009-03-16 14:21:51 +1000
commitca54881115073d5d1ebcc46d489cf51abf4ba4ac (patch)
tree188d6f0d29bc8382653b5026ad396cd393a2c233
parent2f440553d602cb3e2903803539216739b21b4c42 (diff)
downloadsystemtap-steved-ca54881115073d5d1ebcc46d489cf51abf4ba4ac.tar.gz
systemtap-steved-ca54881115073d5d1ebcc46d489cf51abf4ba4ac.tar.xz
systemtap-steved-ca54881115073d5d1ebcc46d489cf51abf4ba4ac.zip
fixed format of non-grabbable comments (for Tapset Reference Guide), added tapsetdescription for man page generator (in development)
-rw-r--r--tapset/networking.stp8
1 files changed, 5 insertions, 3 deletions
diff --git a/tapset/networking.stp b/tapset/networking.stp
index a147441a..f6d78536 100644
--- a/tapset/networking.stp
+++ b/tapset/networking.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 the activities of the network device.
+// </tapsetdescription>
/**
* probe netdev.receive - Data recieved from network device.
* @dev_name: The name of the device. e.g: eth0, ath1.
@@ -49,7 +51,7 @@
///
/// </variablelist>
///</para>
-/* Main device receive routine, be called when packet arrives on network device */
+// Main device receive routine, be called when packet arrives on network device
probe netdev.receive
= kernel.function("netif_receive_skb")
{
@@ -67,7 +69,7 @@ probe netdev.receive
* @truesize: The size of the the data to be transmitted.
*
*/
-/* Queue a buffer for transmission to a network device */
+// Queue a buffer for transmission to a network device
probe netdev.transmit
= kernel.function("dev_queue_xmit")
{