Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/cofor.hfa

    r1ed5e9e r334e0cf2  
    4545}
    4646
     47#define COFOR( lidname, low, high, body ) \
     48    { \
     49        void loopBody( long lidname ) { \
     50            body \
     51        } \
     52        cofor( low, high, loopBody ); \
     53    }
     54
    4755//////////////////////////////////////////////////////////////////////////////////////////
    4856// parallel (COBEGIN/COEND)
Note: See TracChangeset for help on using the changeset viewer.