]> sourceware.org Git - systemtap-htdocs.git/commitdiff
Regenerated html to get latest man page changes.
authormmason <mmason>
Thu, 18 Oct 2007 22:29:42 +0000 (22:29 +0000)
committermmason <mmason>
Thu, 18 Oct 2007 22:29:42 +0000 (22:29 +0000)
17 files changed:
man/stap.1.html
man/stapex.5.html
man/stapfuncs.5.html
man/stapprobes.5.html
man/stapprobes.iosched.5.html
man/stapprobes.netdev.5.html
man/stapprobes.nfs.5.html
man/stapprobes.nfsd.5.html
man/stapprobes.pagefault.5.html
man/stapprobes.process.5.html
man/stapprobes.rpc.5.html
man/stapprobes.scsi.5.html
man/stapprobes.signal.5.html
man/stapprobes.socket.5.html
man/stapprobes.tcp.5.html
man/stapprobes.udp.5.html
man/staprun.8.html

index 8ea04eb64cfc8f1370930260938cb655c4332cac..07216502cc869f6b0d8d1779ef6704cb8fd3b84f 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAP</TITLE>
 </HEAD><BODY>
 <H1>STAP</H1>
-Section: User Commands  (1)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: User Commands  (1)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -1319,6 +1319,6 @@ Use the Bugzilla link off of the project web page or our mailing list.
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index a281959c617f73f102a2556562c7c565e643cc03..0949d83119601475044c1d5a23e797d2586a2f65 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPEX</TITLE>
 </HEAD><BODY>
 <H1>STAPEX</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -192,6 +192,6 @@ each inlined function instance is listed separately.
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index ee93cbe220d2332fbf044548b65e491f3de3f42e..22da88589136da540a3ac3179aa47b8907dc4984 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPFUNCS</TITLE>
 </HEAD><BODY>
 <H1>STAPFUNCS</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -88,6 +88,11 @@ or if a user-space access would cause a fault.
 <DL COMPACT>
 <DT>kernel_string:string (addr:long)<DD>
 Copy a 0-terminated string from kernel space at given address.
+<DT>kernel_string_n:string (addr:long, n:long)<DD>
+Similar with kernel_string, except that not more than n bytes are copied.
+Thus, if there are null bytes among the first n bytes, it is same as
+kernel_string(addr). If not, n bytes will be copied and a null byte will
+be padded to the end.
 <DT>kernel_long:long (addr:long)<DD>
 Copy a long from kernel space at given address.
 <DT>kernel_int:long (addr:long)<DD>
@@ -146,7 +151,7 @@ Return the number of seconds since the UNIX epoch.
 <P>
 </DL>
 <A NAME="lbAH">&nbsp;</A>
-<H3>CONTEXTINFO</H3>
+<H3>CONTEXT INFO</H3>
 
 <DL COMPACT>
 <DT>cpu:long ()<DD>
@@ -221,6 +226,69 @@ Return the symbolic string associated with the given error code, like
 <P>
 </DL>
 <A NAME="lbAK">&nbsp;</A>
+<H3>TASK</H3>
+
+<P>
+
+These functions return data about a task.  They all require
+a task handle as input, such as the value return by task_current() or the variables
+prev_task and next_task in the scheduler.ctxswitch probe alias.
+<P>
+<DL COMPACT>
+<DT>task_current:long()<DD>
+Return the task_struct of the current process.
+<P>
+<DT>task_parent:long(task:long)<DD>
+Return the parent task_struct of the given task.
+<DT>task_state:long(task:long)<DD>
+Return the state of the given task, which can be one of the following:
+<P>
+<BR>&nbsp;&nbsp;&nbsp;TASK_RUNNING&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0
+<BR>&nbsp;&nbsp;&nbsp;TASK_INTERRUPTIBLE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1
+<BR>&nbsp;&nbsp;&nbsp;TASK_UNINTERRUPTIBLE&nbsp;&nbsp;&nbsp;2
+<BR>&nbsp;&nbsp;&nbsp;TASK_STOPPED&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4
+<BR>&nbsp;&nbsp;&nbsp;TASK_TRACED&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8
+<BR>&nbsp;&nbsp;&nbsp;EXIT_ZOMBIE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;16
+<BR>&nbsp;&nbsp;&nbsp;EXIT_DEAD&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;32
+<P>
+<DT>task_execname:string(task:long)<DD>
+Return the name of the given task.
+<P>
+<DT>task_pid:long(task:long)<DD>
+Return the process id of the given task.
+<P>
+<DT>task_tid:long(task:long)<DD>
+Return the thread id of the given task.
+<P>
+<DT>task_gid:long(task:long)<DD>
+Return the group id of the given task.
+<P>
+<DT>task_egid:long(task:long)<DD>
+Return the effective group id of the given task.
+<P>
+<DT>task_uid:long(task:long)<DD>
+Return the user id of the given task.
+<P>
+<DT>task_euid:long(task:long)<DD>
+Return the effective user id of the given task.
+<P>
+<DT>task_prio:long(task:long)<DD>
+Return the priority of the given task.
+<P>
+<DT>task_nice:long(task:long)<DD>
+Return the nice value of the given task.
+<P>
+<DT>task_cpu:long(task:long)<DD>
+Return the scheduled cpu for the given task.
+<P>
+<DT>task_open_file_handles:long(task:long)<DD>
+Return the number of open file handles for the given task.
+<P>
+<DT>task_max_file_handles:long(task:long)<DD>
+Return the maximum number of file handles for the given task.
+<P>
+</DL>
+<A NAME="lbAL">&nbsp;</A>
 <H3>QUEUE_STATS</H3>
 
 <P>
@@ -272,7 +340,7 @@ Return the average time a request took from being enqueued to completed.
 Return the average rate of requests per scale units of time.
 <P>
 </DL>
-<A NAME="lbAL">&nbsp;</A>
+<A NAME="lbAM">&nbsp;</A>
 <H3>INDENT</H3>
 
 <P>
@@ -293,7 +361,7 @@ The default function uses
 
 <P>
 </DL>
-<A NAME="lbAM">&nbsp;</A>
+<A NAME="lbAN">&nbsp;</A>
 <H3>SYSTEM</H3>
 
 <DL COMPACT>
@@ -302,7 +370,7 @@ Runs a command on the system. The command will run in the background
 when the current probe completes.
 <P>
 </DL>
-<A NAME="lbAN">&nbsp;</A>
+<A NAME="lbAO">&nbsp;</A>
 <H3>NUMA</H3>
 
 <DL COMPACT>
@@ -310,7 +378,7 @@ when the current probe completes.
 Return which node the given address belongs to in a NUMA system.
 <P>
 </DL>
-<A NAME="lbAO">&nbsp;</A>
+<A NAME="lbAP">&nbsp;</A>
 <H3>CTIME</H3>
 
 <DL COMPACT>
@@ -321,7 +389,7 @@ of the given number of seconds since the epoch, as perhaps returned by
 
 <P>
 </DL>
-<A NAME="lbAP">&nbsp;</A>
+<A NAME="lbAQ">&nbsp;</A>
 <H3>PERFMON</H3>
 
 <DL COMPACT>
@@ -331,7 +399,7 @@ handle. The body of the a perfmon probe should set record
 the handle being used for that event.
 <P>
 </DL>
-<A NAME="lbAQ">&nbsp;</A>
+<A NAME="lbAR">&nbsp;</A>
 <H3>SOCKETS</H3>
 
 These functions convert arguments in the socket tapset back and
@@ -364,7 +432,7 @@ Returns the string representation of the given socket flags value.
 Returns the string representation of the given message flags bit map.
 <P>
 </DL>
-<A NAME="lbAR">&nbsp;</A>
+<A NAME="lbAS">&nbsp;</A>
 <H3>INET</H3>
 
 These functions convert between network (big-endian) and host byte order, like their
@@ -385,7 +453,7 @@ Convert from host to network byte order, 16-bit.
 <P>
 <P>
 </DL>
-<A NAME="lbAS">&nbsp;</A>
+<A NAME="lbAT">&nbsp;</A>
 <H2>FILES</H2>
 
 
@@ -393,7 +461,7 @@ Convert from host to network byte order, 16-bit.
 
 
 <P>
-<A NAME="lbAT">&nbsp;</A>
+<A NAME="lbAU">&nbsp;</A>
 <H2>SEE ALSO</H2>
 
 <I><A HREF="stap.1.html">stap</A></I>(1)
@@ -410,25 +478,26 @@ Convert from host to network byte order, 16-bit.
 <DT><A HREF="#lbAE">CONVERSIONS</A><DD>
 <DT><A HREF="#lbAF">STRING</A><DD>
 <DT><A HREF="#lbAG">TIMESTAMP</A><DD>
-<DT><A HREF="#lbAH">CONTEXTINFO</A><DD>
+<DT><A HREF="#lbAH">CONTEXT INFO</A><DD>
 <DT><A HREF="#lbAI">TARGET_SET</A><DD>
 <DT><A HREF="#lbAJ">ERRNO</A><DD>
-<DT><A HREF="#lbAK">QUEUE_STATS</A><DD>
-<DT><A HREF="#lbAL">INDENT</A><DD>
-<DT><A HREF="#lbAM">SYSTEM</A><DD>
-<DT><A HREF="#lbAN">NUMA</A><DD>
-<DT><A HREF="#lbAO">CTIME</A><DD>
-<DT><A HREF="#lbAP">PERFMON</A><DD>
-<DT><A HREF="#lbAQ">SOCKETS</A><DD>
-<DT><A HREF="#lbAR">INET</A><DD>
+<DT><A HREF="#lbAK">TASK</A><DD>
+<DT><A HREF="#lbAL">QUEUE_STATS</A><DD>
+<DT><A HREF="#lbAM">INDENT</A><DD>
+<DT><A HREF="#lbAN">SYSTEM</A><DD>
+<DT><A HREF="#lbAO">NUMA</A><DD>
+<DT><A HREF="#lbAP">CTIME</A><DD>
+<DT><A HREF="#lbAQ">PERFMON</A><DD>
+<DT><A HREF="#lbAR">SOCKETS</A><DD>
+<DT><A HREF="#lbAS">INET</A><DD>
 </DL>
-<DT><A HREF="#lbAS">FILES</A><DD>
-<DT><A HREF="#lbAT">SEE ALSO</A><DD>
+<DT><A HREF="#lbAT">FILES</A><DD>
+<DT><A HREF="#lbAU">SEE ALSO</A><DD>
 </DL>
 <HR>
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index d8299214445df1eeb143b4788f392b1f9d063a05..bb146f982beb10ec495d58f6d30fcac18819026c 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -33,6 +33,7 @@ and that no error should result if it fails to expand.  Optionalness
 passes down through all levels of alias/wildcard expansion.
 <P>
 These are all syntactically valid probe points:
+<P>
 
 <BR>
 
@@ -87,6 +88,7 @@ target variables available in either context.
 
 If the order of execution among &quot;begin&quot; or &quot;end&quot; probes is significant,
 then an optional sequence number may be provided:
+<P>
 
 <BR>
 
@@ -100,6 +102,7 @@ end(N)
 </DL>
 
 
+<P>
 The number N may be positive or negative.  The probe handlers are run in
 increasing order, and the order between handlers with the same sequence
 number is unspecified.  When &quot;begin&quot; or &quot;end&quot; are given without a
@@ -135,6 +138,7 @@ conjunction with optional probes.
 Intervals defined by the standard kernel &quot;jiffies&quot; timer may be used
 to trigger probe handlers asynchronously.  Two probe point variants
 are supported by the translator:
+<P>
 
 <BR>
 
@@ -148,6 +152,7 @@ timer.jiffies(N).randomize(M)
 </DL>
 
 
+<P>
 The probe handler is run every N jiffies (a kernel-defined unit of
 time, typically between 1 and 60 ms).  If the &quot;randomize&quot; component is
 given, a linearly distributed random value in the range [-M..+M] is
@@ -160,6 +165,7 @@ a multi-processor computer.
 
 Alternatively, intervals may be specified in units of time.
 There are two probe point variants similar to the jiffies timer:
+<P>
 
 <BR>
 
@@ -173,6 +179,7 @@ timer.ms(N).randomize(M)
 </DL>
 
 
+<P>
 Here, N and M are specified in milliseconds, but the full options for units
 are seconds (s/sec), milliseconds (ms/msec), microseconds (us/usec),
 nanoseconds (ns/nsec), and hertz (hz).  Randomization is not supported for
@@ -189,6 +196,7 @@ before any rounding occurs.
 
 Profiling timers are also available to provide probes that execute on all
 CPUs at the rate of the system tick.  This probe takes no parameters.
+<P>
 
 <BR>
 
@@ -201,6 +209,7 @@ timer.profile
 </DL>
 
 
+<P>
 Full context information of the interrupted process is available, making
 this probe suitable for a time-based sampling profiler.
 <P>
@@ -220,7 +229,7 @@ processor, the probe handler is run in that context.
 <P>
 
 Points in a kernel, which are identified by
-module, source file, line number, function name, C label name, or some
+module, source file, line number, function name, or some
 combination of these.  
 <P>
 
@@ -255,6 +264,7 @@ probes. The
 
 variant places a probe at the exact spot, exposing those local variables
 that are visible there.
+<P>
 
 <BR>
 
@@ -288,22 +298,32 @@ module(MPATTERN).statement(PATTERN)
 </DL>
 
 
+<P>
 In the above list, MPATTERN stands for a string literal that aims to
 identify the loaded kernel module of interest.  It may include &quot;*&quot;, &quot;[]&quot;,
 and &quot;?&quot; wildcards.  PATTERN stands for a string literal that
 aims to identify a point in the program.  It is made up of three
-parts.  The first part is the name of a function, as would appear in
-the
+parts:
+<DL COMPACT>
+<DT>*<DD>
+The first part is the name of a function, as would appear in the
 <I>nm</I>
 
 program's output.  This part may use the &quot;*&quot; and &quot;?&quot; wildcarding
-operators to match multiple names.  The second part is optional, and
-begins with the &quot;@&quot; character.  It is followed by a source file name
-wildcard pattern, such as
-<I>mm/slab*</I>.
-
+operators to match multiple names.
+<DT>*<DD>
+The second part is optional and begins with the &quot;@&quot; character. 
+It is followed by the path to the source file containing the function,
+which may include a wildcard pattern, such as mm/slab*.
+In most cases, the path should be relative to the top of the
+linux source directory, although an absolute path may be necessary for some kernels.
+If a relative pathname doesn't work, try absolute.
+<DT>*<DD>
 Finally, the third part is optional if the file name part was given,
 and identifies the line number in the source file, preceded by a &quot;:&quot;.
+</DL>
+<P>
+
 As an alternative, PATTERN may be a numeric constant, indicating an
 (module-relative or kernel-_stext-relative) address.  In guru mode
 only, absolute kernel addresses may be specified with the &quot;.absolute&quot;
@@ -345,6 +365,7 @@ is the name of the systemtap module). The
 filesystem is a pseudo-filesystem which is used an an interface to
 kernel data structures.  There are four probe point variants supported
 by the translator:
+<P>
 
 <BR>
 
@@ -360,6 +381,7 @@ procfs.write
 </DL>
 
 
+<P>
 <I>PATH</I>
 
 is the file name (relative to /proc/systemtap/MODNAME) to be created.
@@ -381,6 +403,7 @@ a variable named
 <I>$value</I>,
 
 like this:
+<P>
 
 <BR>
 
@@ -404,6 +427,7 @@ string variable named
 <I>$value</I>,
 
 like this:
+<P>
 
 <BR>
 
@@ -473,6 +497,7 @@ events, which are available on all processors. This sets up a counter
 on the processor to count the number of events occuring on the
 processor. For more details on the performance monitoring events
 available on a specific processor use the command perfmon2 command:
+<P>
 
 <BR>
 
@@ -580,6 +605,6 @@ refers to the group of probe aliases with any name in the third position
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index 7358caa2e960cdb0dc54b5d6f5603160c0d6787b..538888d7b4dcce771123757733ab8b53dc81b964 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.IOSCHED</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.IOSCHED</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -140,6 +140,6 @@ Fires when a request is completed
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index ab243a8778dd0ad31f4a491ef055d5b7db84751f..51fc17e56770a7c9d2535b0b618d1fe542b50c0b 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.NETDEV</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.NETDEV</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -106,6 +106,6 @@ Fires when the network device wants to transmit a buffer
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index 963ee52504815977dc6e82179cfb0f5d19493327..25370ec33ccac1a9778081709ff64b458c7cdeb9 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.NFS</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.NFS</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -1607,6 +1607,6 @@ Fires whenever nfs client renames a file on server
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index 9ac70dbcd6c580da16d725e58910ef8125542032..dab757152a49e77b5a67a7169bc13ef26979cbfa 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.NFSD</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.NFSD</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -675,6 +675,6 @@ Fires whenever server receives NFS operation from client
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index 60150b842434e4b48670eca55018816f98a526d2..96e182d58690b972c3ea475fc6a201da8c31453e 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.PAGEFAULT</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.PAGEFAULT</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -61,6 +61,6 @@ Fires when there is a pagefault
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index a56eada77aec978712dcc87c6e78684fc8f9cace..9dde5359aa41dcaa50deeb0b21bd52eba7de1f02 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.PROCESS</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.PROCESS</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -144,6 +144,6 @@ process waits in a zombie state.
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index 2840e88474ca34e0d580004af40d2af4ee1ccb14..0d6a953d77532a9e40527b042806d6869eba295d 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.RPC</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.RPC</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -778,6 +778,6 @@ Fires when a task is to be delayed
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index 82510b4bb23fa8aeee66cc2a01147a6a4dd793c2..0238045ce8b2d9ce2cd4c4984a649a43028f7c18 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.SCSI</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.SCSI</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -200,6 +200,6 @@ block device I/O requests
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index 54b8e74b3ad5f0106f88388c276a857064b00d01..6559638e25644ce5fda5a0e815cc26b40d705ecb 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.SIGNAL</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.SIGNAL</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -655,6 +655,6 @@ Fires when flush all pending signals for a task
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index 36a6229b7a323cb980fac88b1f5158a0749f092c..cf591d57498598d894283202875b7af3f080a372 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.SOCKET</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.SOCKET</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -621,6 +621,6 @@ The socket closer.
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
index f26dbebbf964861547757028aacca55f3e725568..a9e555b307692c2a22461cef04bfbb2d067a6f71 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.TCP</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.TCP</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -140,6 +140,6 @@ Fires when returning from tcp.disconnect
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:06 GMT, October 18, 2007
 </BODY>
 </HTML>
index 6911e5e306e2596ddd7eeb24e98817f2356aa178..7bfd5756270ed5f78ded5932e5617c2f75d150d7 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPPROBES.UDP</TITLE>
 </HEAD><BODY>
 <H1>STAPPROBES.UDP</H1>
-Section: File Formats (5)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: File Formats (5)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -140,6 +140,6 @@ Fires when returning from udp.disconnect
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:06 GMT, October 18, 2007
 </BODY>
 </HTML>
index deb0ed256b56442d48335fabbb562f89dc487c6c..64e65d3d40f7b1a123e9f6c6d96a71646cc079b3 100644 (file)
@@ -2,7 +2,7 @@
 <HTML><HEAD><TITLE>Manpage of STAPRUN</TITLE>
 </HEAD><BODY>
 <H1>STAPRUN</H1>
-Section: Maintenance Commands (8)<BR>Updated: 2007-10-11<BR><A HREF="#index">Index</A>
+Section: Maintenance Commands (8)<BR>Updated: 2007-10-18<BR><A HREF="#index">Index</A>
 <A HREF="../index.html">Return to Main Contents</A><HR>
 
 <A NAME="lbAB">&nbsp;</A>
@@ -261,6 +261,6 @@ Use the Bugzilla link off of the project web page or our mailing list.
 This document was created by
 <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
 using the manual pages.<BR>
-Time: 17:18:18 GMT, October 11, 2007
+Time: 22:28:05 GMT, October 18, 2007
 </BODY>
 </HTML>
This page took 0.059837 seconds and 5 git commands to generate.