summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-11-23 19:08:51 -0500
committerDave Brolley <brolley@redhat.com>2009-11-23 19:08:51 -0500
commit5d1c958ce2dcc0f28c1bd13b8e005c0c2ad1cdba (patch)
treee44ad8807e0b5b2e1bb85682f677d492f1195dbf /doc
parent562d60b004e3d7ae73c1c7508be529006bd6430f (diff)
parent90bba7158de040705a101ba1fdf6062866b4b4e9 (diff)
downloadsystemtap-steved-5d1c958ce2dcc0f28c1bd13b8e005c0c2ad1cdba.tar.gz
systemtap-steved-5d1c958ce2dcc0f28c1bd13b8e005c0c2ad1cdba.tar.xz
systemtap-steved-5d1c958ce2dcc0f28c1bd13b8e005c0c2ad1cdba.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Conflicts: configure
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.in1
-rw-r--r--doc/SystemTap_Tapset_Reference/Makefile.am2
-rw-r--r--doc/SystemTap_Tapset_Reference/Makefile.in3
-rw-r--r--doc/SystemTap_Tapset_Reference/tapsets.tmpl24
-rw-r--r--doc/test1
5 files changed, 24 insertions, 7 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 06312399..8b1d0a51 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -105,7 +105,6 @@ PIECFLAGS = @PIECFLAGS@
PIECXXFLAGS = @PIECXXFLAGS@
PIELDFLAGS = @PIELDFLAGS@
PKG_CONFIG = @PKG_CONFIG@
-PROCFLAGS = @PROCFLAGS@
RANLIB = @RANLIB@
RPM_CFLAGS = @RPM_CFLAGS@
RPM_LIBS = @RPM_LIBS@
diff --git a/doc/SystemTap_Tapset_Reference/Makefile.am b/doc/SystemTap_Tapset_Reference/Makefile.am
index 454b3331..109aaa9e 100644
--- a/doc/SystemTap_Tapset_Reference/Makefile.am
+++ b/doc/SystemTap_Tapset_Reference/Makefile.am
@@ -30,7 +30,7 @@ if BUILD_REFDOCS
all: $(PDFDOCS) stamp-htmldocs stamp-mandocs
tapsets.xml: docproc $(shell find $(SRCTREE)/tapset -name '*.stp')
SRCTREE=$(SRCTREE) $(DOCPROC) doc $(abs_srcdir)/tapsets.tmpl > tapsets.xml.new
- if cmp tapsets.xml.new tapsets.xml >/dev/null ; then \
+ if test -s tapsets.xml && cmp tapsets.xml.new tapsets.xml >/dev/null ; then \
echo tapsets.xml unchanged; \
rm tapsets.xml.new; \
else \
diff --git a/doc/SystemTap_Tapset_Reference/Makefile.in b/doc/SystemTap_Tapset_Reference/Makefile.in
index a606b868..01cf116c 100644
--- a/doc/SystemTap_Tapset_Reference/Makefile.in
+++ b/doc/SystemTap_Tapset_Reference/Makefile.in
@@ -108,7 +108,6 @@ PIECFLAGS = @PIECFLAGS@
PIECXXFLAGS = @PIECXXFLAGS@
PIELDFLAGS = @PIELDFLAGS@
PKG_CONFIG = @PKG_CONFIG@
-PROCFLAGS = @PROCFLAGS@
RANLIB = @RANLIB@
RPM_CFLAGS = @RPM_CFLAGS@
RPM_LIBS = @RPM_LIBS@
@@ -430,7 +429,7 @@ uninstall-am:
@BUILD_REFDOCS_TRUE@all: $(PDFDOCS) stamp-htmldocs stamp-mandocs
@BUILD_REFDOCS_TRUE@tapsets.xml: docproc $(shell find $(SRCTREE)/tapset -name '*.stp')
@BUILD_REFDOCS_TRUE@ SRCTREE=$(SRCTREE) $(DOCPROC) doc $(abs_srcdir)/tapsets.tmpl > tapsets.xml.new
-@BUILD_REFDOCS_TRUE@ if cmp tapsets.xml.new tapsets.xml >/dev/null ; then \
+@BUILD_REFDOCS_TRUE@ if test -s tapsets.xml && cmp tapsets.xml.new tapsets.xml >/dev/null ; then \
@BUILD_REFDOCS_TRUE@ echo tapsets.xml unchanged; \
@BUILD_REFDOCS_TRUE@ rm tapsets.xml.new; \
@BUILD_REFDOCS_TRUE@ else \
diff --git a/doc/SystemTap_Tapset_Reference/tapsets.tmpl b/doc/SystemTap_Tapset_Reference/tapsets.tmpl
index c73defef..bb855d29 100644
--- a/doc/SystemTap_Tapset_Reference/tapsets.tmpl
+++ b/doc/SystemTap_Tapset_Reference/tapsets.tmpl
@@ -135,6 +135,16 @@
!Itapset/timestamp.stp
</chapter>
+ <chapter id="ctime.stp">
+ <title>Time string utility function</title>
+ <para>
+ Utility function to turn seconds since the epoch (as returned by
+ the timestamp function gettimeofday_s()) into a human readable
+ date/time string.
+ </para>
+!Itapset/ctime.stp
+ </chapter>
+
<chapter id="memory_stp">
<title>Memory Tapset</title>
<para>
@@ -157,12 +167,13 @@
</chapter>
<chapter id="iosched.stp">
- <title>IO Scheduler Tapset</title>
+ <title>IO Scheduler and block IO Tapset</title>
<para>
- This family of probe points is used to probe IO scheduler activities.
+ This family of probe points is used to probe block IO layer and IO scheduler activities.
It contains the following probe points:
</para>
!Itapset/ioscheduler.stp
+!Itapset/ioblock.stp
</chapter>
<chapter id="scsi.stp">
@@ -251,4 +262,13 @@
</para>
!Itapset/conversions.stp
</chapter>
+ <chapter id="ansi.stp">
+ <title>Utility functions for using ansi control chars in logs</title>
+ <para>
+ Utility functions for logging using ansi control characters. This
+ lets you manipulate the cursor position and character color output
+ and attributes of log messages.
+ </para>
+!Itapset/ansi.stp
+ </chapter>
</book>
diff --git a/doc/test b/doc/test
deleted file mode 100644
index eefc69f7..00000000
--- a/doc/test
+++ /dev/null
@@ -1 +0,0 @@
-Thu Aug 28 23:10:00 EST 2008