From e94cb46c2219da504a559d49eeda3e4134b96453 Mon Sep 17 00:00:00 2001 From: hunt Date: Tue, 22 Mar 2005 18:36:50 +0000 Subject: *** empty log message *** --- runtime/docs/html/test4_2dtr_8c-source.html | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'runtime/docs/html/test4_2dtr_8c-source.html') diff --git a/runtime/docs/html/test4_2dtr_8c-source.html b/runtime/docs/html/test4_2dtr_8c-source.html index 21acb158..47241e71 100644 --- a/runtime/docs/html/test4_2dtr_8c-source.html +++ b/runtime/docs/html/test4_2dtr_8c-source.html @@ -12,9 +12,9 @@ 00003 #define BUCKETS 16 /* largest histogram width */ 00004 00005 #include "runtime.h" -00006 #include "io.c" +00006 #include "io.c" 00007 #include "map.c" -00008 #include "probes.c" +00008 #include "probes.c" 00009 00010 MODULE_DESCRIPTION("SystemTap probe: test4"); 00011 MODULE_AUTHOR("Martin Hunt <hunt@redhat.com>"); @@ -70,33 +70,33 @@ 00061 reads = _stp_map_new (1000, STAT); 00062 writes = _stp_map_new (1000, STAT); 00063 -00064 ret = _stp_register_jprobes (dtr_probes, MAX_DTR_ROUTINE); +00064 ret = _stp_register_jprobes (dtr_probes, MAX_DTR_ROUTINE); 00065 -00066 dlog("instrumentation is enabled...\n"); +00066 dlog("instrumentation is enabled...\n"); 00067 return ret; 00068 00069 } 00070 00071 static void cleanup_dtr(void) 00072 { -00073 struct map_node_stat *st; -00074 struct map_node_int64 *ptr; +00073 struct map_node_stat *st; +00074 struct map_node_int64 *ptr; 00075 -00076 _stp_unregister_jprobes (dtr_probes, MAX_DTR_ROUTINE); +00076 _stp_unregister_jprobes (dtr_probes, MAX_DTR_ROUTINE); 00077 -00078 for (ptr = (struct map_node_int64 *)_stp_map_start(opens); ptr; -00079 ptr = (struct map_node_int64 *)_stp_map_iter (opens,(struct map_node *)ptr)) +00078 for (ptr = (struct map_node_int64 *)_stp_map_start(opens); ptr; +00079 ptr = (struct map_node_int64 *)_stp_map_iter (opens,(struct map_node *)ptr)) 00080 dlog ("opens[%s] = %lld\n", key1str(ptr), ptr->val); 00081 dlog ("\n"); 00082 -00083 for (st = (struct map_node_stat *)_stp_map_start(reads); st; -00084 st = (struct map_node_stat *)_stp_map_iter (reads,(struct map_node *)st)) +00083 for (st = (struct map_node_stat *)_stp_map_start(reads); st; +00084 st = (struct map_node_stat *)_stp_map_iter (reads,(struct map_node *)st)) 00085 dlog ("reads[%s] = [count=%lld sum=%lld min=%lld max=%lld]\n", key1str(st), st->stats.count, st->stats.sum, 00086 st->stats.min, st->stats.max); 00087 dlog ("\n"); 00088 -00089 for (st = (struct map_node_stat *)_stp_map_start(writes); st; -00090 st = (struct map_node_stat *)_stp_map_iter (writes,(struct map_node *)st)) +00089 for (st = (struct map_node_stat *)_stp_map_start(writes); st; +00090 st = (struct map_node_stat *)_stp_map_iter (writes,(struct map_node *)st)) 00091 dlog ("writes[%s] = [count=%lld sum=%lld min=%lld max=%lld]\n", key1str(st), st->stats.count, st->stats.sum, 00092 st->stats.min, st->stats.max); 00093 dlog ("\n"); @@ -113,5 +113,5 @@ 00104 MODULE_LICENSE("GPL"); 00105
-Generated on Tue Mar 22 00:32:02 2005 for SystemTap. +Generated on Tue Mar 22 10:27:36 2005 for SystemTap. -- cgit