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. --- runtime/docs/html/dir_000003.html | 40 --------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 runtime/docs/html/dir_000003.html (limited to 'runtime/docs/html/dir_000003.html') diff --git a/runtime/docs/html/dir_000003.html b/runtime/docs/html/dir_000003.html deleted file mode 100644 index 497baf4d..00000000 --- a/runtime/docs/html/dir_000003.html +++ /dev/null @@ -1,40 +0,0 @@ - - -SystemTap: probes/test4/ Directory Reference - - - -
Main Page | Modules | Directories | File List | Globals | Related Pages
- -

test4 Directory Reference

This example probe tracks file opens, reads and writes. -More... - - - - - - -

Files

file  dtr.c [code]
file  README [code]
-

Detailed Description

-This example probe tracks file opens, reads and writes. -

-It demonstrates maps, stats, and iterators.

-This is a translation of on an old dtr probe. Original source is

-global {
-  long @opens[string];
-  sum @reads[string], @writes[string];
-}
-
-probe sys_open:entry {
-  @opens[current->comm]++;
-}
-
-probe sys_read:entry {
-  @reads[current->comm] << count;
-}
-
-probe sys_write:entry {
-  @writes[current->comm] << count;
-}
-
-- cgit