Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
changeset 162:cb7277bac147 malloc2
changes to histograms
| author | Merten Sach <msach@mailbox.tu-berlin.de> |
|---|---|
| date | Thu, 06 Oct 2011 16:25:59 +0200 |
| parents | abc8bc270b83 |
| children | d1dd9e6ee72c |
| files | VMS.c |
| diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/VMS.c Thu Oct 06 15:59:38 2011 +0200 1.2 +++ b/VMS.c Thu Oct 06 16:25:59 2011 +0200 1.3 @@ -110,15 +110,15 @@ 1.4 1.5 //============================= MEASUREMENT STUFF ======================== 1.6 #ifdef MEAS__TIME_MALLOC 1.7 - _VMSMasterEnv->mallocTimeHist = makeFixedBinHistExt( 30, 0, 100, 1.8 + _VMSMasterEnv->mallocTimeHist = makeFixedBinHistExt( 100, 0, 30, 1.9 "malloc_time_hist"); 1.10 - _VMSMasterEnv->freeTimeHist = makeFixedBinHistExt( 30, 0, 100, 1.11 + _VMSMasterEnv->freeTimeHist = makeFixedBinHistExt( 100, 0, 30, 1.12 "free_time_hist"); 1.13 #endif 1.14 #ifdef MEAS__TIME_PLUGIN 1.15 - _VMSMasterEnv->reqHdlrLowTimeHist = makeFixedBinHistExt( 200, 0, 100, 1.16 + _VMSMasterEnv->reqHdlrLowTimeHist = makeFixedBinHistExt( 100, 0, 200, 1.17 "plugin_low_time_hist"); 1.18 - _VMSMasterEnv->reqHdlrHighTimeHist = makeFixedBinHistExt( 200, 0, 100, 1.19 + _VMSMasterEnv->reqHdlrHighTimeHist = makeFixedBinHistExt( 100, 0, 200, 1.20 "plugin_high_time_hist"); 1.21 #endif 1.22 //========================================================================
