From 849e99602e4b0487dad23e28cb6a94bf013f40a4 Mon Sep 17 00:00:00 2001 From: hunt Date: Thu, 26 May 2005 07:18:22 +0000 Subject: Remove all the generated html files. --- .../docs/html/probes_2test4_2README-source.html | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 runtime/docs/html/probes_2test4_2README-source.html (limited to 'runtime/docs/html/probes_2test4_2README-source.html') diff --git a/runtime/docs/html/probes_2test4_2README-source.html b/runtime/docs/html/probes_2test4_2README-source.html deleted file mode 100644 index 20ebcf80..00000000 --- a/runtime/docs/html/probes_2test4_2README-source.html +++ /dev/null @@ -1,34 +0,0 @@ - - -SystemTap: probes/test4/README Source File - - - -
Main Page | Modules | Directories | File List | Globals | Related Pages
- -

README

00001 /** @dir test4
-00002 This example probe tracks file opens, reads and writes.
-00003 It demonstrates maps, stats, and iterators.
-00004 
-00005 This is a translation of on an old dtr probe.  Original source is
-00006 \verbatim
-00007 global {
-00008   long @opens[string];
-00009   sum @reads[string], @writes[string];
-00010 }
-00011 
-00012 probe sys_open:entry {
-00013   @opens[current->comm]++;
-00014 }
-00015 
-00016 probe sys_read:entry {
-00017   @reads[current->comm] << count;
-00018 }
-00019 
-00020 probe sys_write:entry {
-00021   @writes[current->comm] << count;
-00022 }
-00023 \endverbatim
-00024 */
-
-- cgit