diff VMS.h @ 48:054006c26b92

Added instrumentation to measure master time, master lock time and create time
author Me
date Tue, 26 Oct 2010 18:18:30 -0700
parents 72373405c816
children 984f7d78bfdf
line diff
     1.1 --- a/VMS.h	Sat Oct 16 04:11:15 2010 -0700
     1.2 +++ b/VMS.h	Tue Oct 26 18:18:30 2010 -0700
     1.3 @@ -139,6 +139,13 @@
     1.4  //VirtProcr
     1.5  
     1.6  
     1.7 +typedef struct
     1.8 + {
     1.9 +   Histogram *createHist;
    1.10 +   Histogram *masterLockHist;
    1.11 +   Histogram *masterTimeHist;
    1.12 + }
    1.13 +VMSStats;
    1.14  
    1.15  typedef struct
    1.16   {
    1.17 @@ -158,6 +165,7 @@
    1.18     int              setupComplete;
    1.19     int              masterLock;
    1.20  
    1.21 +   VMSStats        *stats;
    1.22   }
    1.23  MasterEnv;
    1.24