comparison VMS.c @ 156:b86c54dfb19f

smaller Hists for malloc, free and plugin
author Merten Sach <msach@mailbox.tu-berlin.de>
date Thu, 06 Oct 2011 15:55:42 +0200
parents eb79d057d10d
children ad8213a8e916
comparison
equal deleted inserted replaced
70:ce3d425395a3 71:d9b26d95acfa
108 _VMSMasterEnv->freeListHead = VMS_ext__create_free_list(); 108 _VMSMasterEnv->freeListHead = VMS_ext__create_free_list();
109 109
110 110
111 //============================= MEASUREMENT STUFF ======================== 111 //============================= MEASUREMENT STUFF ========================
112 #ifdef MEAS__TIME_MALLOC 112 #ifdef MEAS__TIME_MALLOC
113 _VMSMasterEnv->mallocTimeHist = makeFixedBinHistExt( 100, 0, 100, 113 _VMSMasterEnv->mallocTimeHist = makeFixedBinHistExt( 30, 0, 100,
114 "malloc_time_hist"); 114 "malloc_time_hist");
115 _VMSMasterEnv->freeTimeHist = makeFixedBinHistExt( 80, 0, 100, 115 _VMSMasterEnv->freeTimeHist = makeFixedBinHistExt( 30, 0, 100,
116 "free_time_hist"); 116 "free_time_hist");
117 #endif 117 #endif
118 #ifdef MEAS__TIME_PLUGIN 118 #ifdef MEAS__TIME_PLUGIN
119 _VMSMasterEnv->reqHdlrLowTimeHist = makeFixedBinHistExt( 1000, 0, 100, 119 _VMSMasterEnv->reqHdlrLowTimeHist = makeFixedBinHistExt( 200, 0, 100,
120 "plugin_low_time_hist"); 120 "plugin_low_time_hist");
121 _VMSMasterEnv->reqHdlrHighTimeHist = makeFixedBinHistExt( 1000, 0, 100, 121 _VMSMasterEnv->reqHdlrHighTimeHist = makeFixedBinHistExt( 200, 0, 100,
122 "plugin_high_time_hist"); 122 "plugin_high_time_hist");
123 #endif 123 #endif
124 //======================================================================== 124 //========================================================================
125 125
126 //===================== Only VMS__malloc after this ==================== 126 //===================== Only VMS__malloc after this ====================