comparison SSR.h @ 63:a32504bb2a1c

added a cast to remove a warning and did some formatting whitespace
author Some Random Person <seanhalle@yahoo.com>
date Tue, 13 Mar 2012 10:04:14 -0700
parents 3c9ed64db705
children bd5ab695145c
comparison
equal deleted inserted replaced
21:0e8fa220cdba 22:3f793be5d02e
15 #include "dependency.h" 15 #include "dependency.h"
16 16
17 17
18 //=========================================================================== 18 //===========================================================================
19 #define NUM_STRUCS_IN_SEM_ENV 1000 19 #define NUM_STRUCS_IN_SEM_ENV 1000
20
21 //This is hardware dependent -- it's the number of cycles of scheduling
22 // overhead -- if a work unit is fewer than this, it is better being
23 // combined sequentially with other work
24 //This value depends on both VMS overhead and SSR's plugin. At some point
25 // it will be derived by perf-counter measurements during init of SSR
26 #define MIN_WORK_UNIT_CYCLES 20000
20 27
21 //=========================================================================== 28 //===========================================================================
22 /*This header defines everything specific to the SSR semantic plug-in 29 /*This header defines everything specific to the SSR semantic plug-in
23 */ 30 */
24 typedef struct _SSRSemReq SSRSemReq; 31 typedef struct _SSRSemReq SSRSemReq;