From e0c4dae873d0c7365f928fa2e72450f33b69ca3d Mon Sep 17 00:00:00 2001 From: William Cohen Date: Tue, 25 Nov 2008 17:53:16 -0500 Subject: Add ioscheduler, socket, tcp, and upd to tapset reference. --- doc/SystemTap_Tapset_Reference/tapsets.tmpl | 37 +++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'doc/SystemTap_Tapset_Reference') diff --git a/doc/SystemTap_Tapset_Reference/tapsets.tmpl b/doc/SystemTap_Tapset_Reference/tapsets.tmpl index ccdba8c2..cf12e2e1 100644 --- a/doc/SystemTap_Tapset_Reference/tapsets.tmpl +++ b/doc/SystemTap_Tapset_Reference/tapsets.tmpl @@ -141,6 +141,16 @@ This is common among !Itapset/memory.stp + + IO Scheduler Tapset + + This family of probe points is used to probe the IO scheduler activities. + It contains the following probe points: + +!Itapset/ioscheduler.stp + + + Networking Tapset @@ -150,4 +160,31 @@ This is common among !Itapset/networking.stp + + Socket Tapset + + This family of probe points is used to probe socket activities. + It contains the following probe points: + +!Itapset/socket.stp + + + + TCP Tapset + + This family of probe points is used to probe TCP layer activities. + It contains the following probe points: + +!Itapset/tcp.stp + + + + UDP Tapset + + This family of probe points is used to probe UDP layer activities. + It contains the following probe points: + +!Itapset/udp.stp + + -- cgit From d1b8e10a316702a20b7abec8d27189a62fc4bab6 Mon Sep 17 00:00:00 2001 From: William Cohen Date: Wed, 26 Nov 2008 14:12:20 -0500 Subject: Add kernel-doc compatible comments and pull process tapset into reference doc. --- doc/SystemTap_Tapset_Reference/tapsets.tmpl | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'doc/SystemTap_Tapset_Reference') diff --git a/doc/SystemTap_Tapset_Reference/tapsets.tmpl b/doc/SystemTap_Tapset_Reference/tapsets.tmpl index cf12e2e1..6c3abd0f 100644 --- a/doc/SystemTap_Tapset_Reference/tapsets.tmpl +++ b/doc/SystemTap_Tapset_Reference/tapsets.tmpl @@ -187,4 +187,13 @@ This is common among !Itapset/udp.stp + + Process Tapset + + This family of probe points is used to probe the process activities. + It contains the following probe points: + +!Itapset/process.stp + + -- cgit From 6516738fcdd511677c6e205347a25e1398348093 Mon Sep 17 00:00:00 2001 From: William Cohen Date: Wed, 26 Nov 2008 15:22:18 -0500 Subject: Correct location for Systemtap_Tapset_Reference man and html output. --- doc/SystemTap_Tapset_Reference/Makefile.am | 4 ++-- doc/SystemTap_Tapset_Reference/Makefile.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/SystemTap_Tapset_Reference') diff --git a/doc/SystemTap_Tapset_Reference/Makefile.am b/doc/SystemTap_Tapset_Reference/Makefile.am index 8327e900..c196e977 100644 --- a/doc/SystemTap_Tapset_Reference/Makefile.am +++ b/doc/SystemTap_Tapset_Reference/Makefile.am @@ -22,13 +22,13 @@ xmldocs: docproc SRCTREE=$(SRCTREE) $(DOCPROC) doc $(abs_srcdir)/tapsets.tmpl > tapsets.xml htmldocs: xmldocs - xmlto html -o tapset tapsets.xml + xmlto html -o tapsets tapsets.xml pdfdocs: xmldocs xmlto pdf tapsets.xml mandocs: xmldocs - xmlto man tapsets.xml + xmlto man -o man5 tapsets.xml #FIXME need to figure out where to install things appropriately #installmandocs: mandocs diff --git a/doc/SystemTap_Tapset_Reference/Makefile.in b/doc/SystemTap_Tapset_Reference/Makefile.in index 5dff66f8..b61be1b7 100644 --- a/doc/SystemTap_Tapset_Reference/Makefile.in +++ b/doc/SystemTap_Tapset_Reference/Makefile.in @@ -441,13 +441,13 @@ xmldocs: docproc SRCTREE=$(SRCTREE) $(DOCPROC) doc $(abs_srcdir)/tapsets.tmpl > tapsets.xml htmldocs: xmldocs - xmlto html -o tapset tapsets.xml + xmlto html -o tapsets tapsets.xml pdfdocs: xmldocs xmlto pdf tapsets.xml mandocs: xmldocs - xmlto man tapsets.xml + xmlto man -o man5 tapsets.xml #FIXME need to figure out where to install things appropriately #installmandocs: mandocs -- cgit