comparison VMS.c @ 163:80d2510315b9

changes to histograms
author Merten Sach <msach@mailbox.tu-berlin.de>
date Thu, 06 Oct 2011 16:26:28 +0200
parents 68449b64c3df
children
comparison
equal deleted inserted replaced
73:29544629631b 78:72f403d5b8a0
117 _VMSMasterEnv->currentMasterProcrID = 0; 117 _VMSMasterEnv->currentMasterProcrID = 0;
118 _VMSMasterEnv->amtOfOutstandingMem = NUM_CORES*MALLOC_ADDITIONAL_MEM_FROM_OS_SIZE; 118 _VMSMasterEnv->amtOfOutstandingMem = NUM_CORES*MALLOC_ADDITIONAL_MEM_FROM_OS_SIZE;
119 119
120 //============================= MEASUREMENT STUFF ======================== 120 //============================= MEASUREMENT STUFF ========================
121 #ifdef MEAS__TIME_MALLOC 121 #ifdef MEAS__TIME_MALLOC
122 _VMSMasterEnv->mallocTimeHist = makeFixedBinHistExt( 30, 0, 100, 122 _VMSMasterEnv->mallocTimeHist = makeFixedBinHistExt( 100, 0, 30,
123 "malloc_time_hist"); 123 "malloc_time_hist");
124 _VMSMasterEnv->freeTimeHist = makeFixedBinHistExt( 30, 0, 100, 124 _VMSMasterEnv->freeTimeHist = makeFixedBinHistExt( 100, 0, 30,
125 "free_time_hist"); 125 "free_time_hist");
126 #endif 126 #endif
127 #ifdef MEAS__TIME_PLUGIN 127 #ifdef MEAS__TIME_PLUGIN
128 _VMSMasterEnv->reqHdlrLowTimeHist = makeFixedBinHistExt( 200, 0, 100, 128 _VMSMasterEnv->reqHdlrLowTimeHist = makeFixedBinHistExt( 100, 0, 200,
129 "plugin_low_time_hist"); 129 "plugin_low_time_hist");
130 _VMSMasterEnv->reqHdlrHighTimeHist = makeFixedBinHistExt( 200, 0, 100, 130 _VMSMasterEnv->reqHdlrHighTimeHist = makeFixedBinHistExt( 100, 0, 200,
131 "plugin_high_time_hist"); 131 "plugin_high_time_hist");
132 #endif 132 #endif
133 //======================================================================== 133 //========================================================================
134 134
135 //===================== Only VMS__malloc after this ==================== 135 //===================== Only VMS__malloc after this ====================