mldonkey-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Mldonkey-commits] Changes to mldonkey/src/daemon/common/commonSources.m


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/daemon/common/commonSources.ml
Date: Thu, 06 Oct 2005 08:56:09 -0400

Index: mldonkey/src/daemon/common/commonSources.ml
diff -u mldonkey/src/daemon/common/commonSources.ml:1.25 
mldonkey/src/daemon/common/commonSources.ml:1.26
--- mldonkey/src/daemon/common/commonSources.ml:1.25    Wed Sep 21 18:11:54 2005
+++ mldonkey/src/daemon/common/commonSources.ml Thu Oct  6 12:56:08 2005
@@ -2171,10 +2171,26 @@
             let nsources = ref 0 in
             HS.iter (fun _ -> incr nsources) sources_by_uid;
             Printf.bprintf buf "Sources by UID table: %d entries\n" !nsources;
+            Printf.bprintf buf "Sources by UID table stats: %d %d %d %d %d 
%d\n" 
+               ((fun (n,_,_,_,_,_) -> n)(HS.stats sources_by_uid))
+               ((fun (_,n,_,_,_,_) -> n)(HS.stats sources_by_uid))
+               ((fun (_,_,n,_,_,_) -> n)(HS.stats sources_by_uid))
+               ((fun (_,_,_,n,_,_) -> n)(HS.stats sources_by_uid))
+               ((fun (_,_,_,_,n,_) -> n)(HS.stats sources_by_uid))
+               ((fun (_,_,_,_,_,n) -> n)(HS.stats sources_by_uid))
+               ;
             
             nsources := 0;
             H.iter (fun _ -> incr nsources) sources_by_num;
             Printf.bprintf buf "Sources by NUM table: %d entries\n" !nsources;
+            Printf.bprintf buf "Sources by NUM table stats: %d %d %d %d %d 
%d\n" 
+               ((fun (n,_,_,_,_,_) -> n)(H.stats sources_by_num))
+               ((fun (_,n,_,_,_,_) -> n)(H.stats sources_by_num))
+               ((fun (_,_,n,_,_,_) -> n)(H.stats sources_by_num))
+               ((fun (_,_,_,n,_,_) -> n)(H.stats sources_by_num))
+               ((fun (_,_,_,_,n,_) -> n)(H.stats sources_by_num))
+               ((fun (_,_,_,_,_,n) -> n)(H.stats sources_by_num))
+               ;
 
             let nconnected = ref 0 in
             Fifo.iter (fun (_,s) ->




reply via email to

[Prev in Thread] Current Thread [Next in Thread]