comparison VMS.h @ 41:cf3e9238aeb0

Measure suspend and master times works -- refactored
author Me
date Sat, 11 Sep 2010 04:40:12 -0700
parents 17d20e5cf924
children 6c9f314daf24
comparison
equal deleted inserted replaced
13:a51468cceec9 14:fed7406cfb9e
40 #define READYTOANIMATE_RETRIES 10000 40 #define READYTOANIMATE_RETRIES 10000
41 41
42 // stack 42 // stack
43 #define VIRT_PROCR_STACK_SIZE 0x10000 43 #define VIRT_PROCR_STACK_SIZE 0x10000
44 44
45 //256M of total memory for VMS application to VMS__malloc 45 //256M of total memory for VMS__malloc
46 #define MASSIVE_MALLOC_SIZE 0x10000000 46 #define MASSIVE_MALLOC_SIZE 0x10000000
47 47
48 #define NUM_PREPEND_BYTES sizeof(FreeListElem) + sizeof(ownerElem); 48 #define NUM_PREPEND_BYTES sizeof(FreeListElem) + sizeof(ownerElem);
49 49
50 #define SUCCESS 0 50 #define SUCCESS 0
149 void *coreLoopEndPt; //addr to jump to to shut down a coreLoop 149 void *coreLoopEndPt; //addr to jump to to shut down a coreLoop
150 150
151 int setupComplete; 151 int setupComplete;
152 int masterLock; 152 int masterLock;
153 153
154 //============================= MEASUREMENT STUFF ========================
155 #ifdef MEAS__TIME_STAMP_SUSP
156 Histogram *measSuspHist;
157 #endif
158 #ifdef MEAS__TIME_MASTER
159 Histogram *measMasterHist;
160 #endif
161 //========================================================================
162 } 154 }
163 MasterEnv; 155 MasterEnv;
164 156
165 157
166 //========================================================== 158 //==========================================================