| version 1.1017 | version 1.1018 |
|---|
| |
| | |
| public: | public: |
| const ComputeID cid; | const ComputeID cid; |
| | |
| LocalWorkMsg *const localWorkMsg; | LocalWorkMsg *const localWorkMsg; |
| Compute(ComputeID); | Compute(ComputeID); |
| int type() { return computeType; }; | int type() { return computeType; }; |
| |
| virtual int priority(void) { return basePriority; } | virtual int priority(void) { return basePriority; } |
| }; | }; |
| | |
| | /* For projection's usage: each compute object's work is associated |
| | * with a user event in projections. This macro indicates the offset |
| | * of the event ID that those compute objects' user events begin with. |
| | */ |
| | #define TRACE_COMPOBJ_IDOFFSET 10000 |
| | |
| #endif | #endif |
| | |