comparison VMS.c @ 157:8cc3d3812c8a

smaller Hists for malloc, free and plugin
author Merten Sach <msach@mailbox.tu-berlin.de>
date Thu, 06 Oct 2011 15:58:34 +0200
parents 99343ffe1918
children 0a106c355325
comparison
equal deleted inserted replaced
62:f80eb0d6cd95 72:e6e84277b2e6
116 _VMSMasterEnv->currentMasterProcrID = 0; 116 _VMSMasterEnv->currentMasterProcrID = 0;
117 117
118 118
119 //============================= MEASUREMENT STUFF ======================== 119 //============================= MEASUREMENT STUFF ========================
120 #ifdef MEAS__TIME_MALLOC 120 #ifdef MEAS__TIME_MALLOC
121 _VMSMasterEnv->mallocTimeHist = makeFixedBinHistExt( 100, 0, 100, 121 _VMSMasterEnv->mallocTimeHist = makeFixedBinHistExt( 30, 0, 100,
122 "malloc_time_hist"); 122 "malloc_time_hist");
123 _VMSMasterEnv->freeTimeHist = makeFixedBinHistExt( 80, 0, 100, 123 _VMSMasterEnv->freeTimeHist = makeFixedBinHistExt( 30, 0, 100,
124 "free_time_hist"); 124 "free_time_hist");
125 #endif 125 #endif
126 #ifdef MEAS__TIME_PLUGIN 126 #ifdef MEAS__TIME_PLUGIN
127 _VMSMasterEnv->reqHdlrLowTimeHist = makeFixedBinHistExt( 1000, 0, 100, 127 _VMSMasterEnv->reqHdlrLowTimeHist = makeFixedBinHistExt( 200, 0, 100,
128 "plugin_low_time_hist"); 128 "plugin_low_time_hist");
129 _VMSMasterEnv->reqHdlrHighTimeHist = makeFixedBinHistExt( 1000, 0, 100, 129 _VMSMasterEnv->reqHdlrHighTimeHist = makeFixedBinHistExt( 200, 0, 100,
130 "plugin_high_time_hist"); 130 "plugin_high_time_hist");
131 #endif 131 #endif
132 //======================================================================== 132 //========================================================================
133 133
134 //===================== Only VMS__malloc after this ==================== 134 //===================== Only VMS__malloc after this ====================