Changeset b4107c8 for benchmark/ctxswitch/cfa_cor.cfa
- Timestamp:
- Jan 7, 2020, 3:50:56 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 580c11b
- Parents:
- 846c026
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/ctxswitch/cfa_cor.cfa
r846c026 rb4107c8 5 5 6 6 coroutine GreatSuspender {}; 7 8 void ?{}( GreatSuspender & this ) {9 prime(this);10 }11 12 7 void main( __attribute__((unused)) GreatSuspender & this ) { 13 while ( true ) {8 while ( true ) { 14 9 suspend(); 15 10 } 16 11 } 17 18 int main(int argc, char* argv[]) { 12 int main( int argc, char * argv[] ) { 13 BENCH_START() 19 14 GreatSuspender s; 20 21 15 BENCH( 22 for ( i; n) {16 for ( i; times ) { 23 17 resume( s ); 24 18 }, 25 19 result 26 20 ) 21 printf( "%g\n", result ); 22 } 27 23 28 printf("%g\n", result); 29 } 24 // Local Variables: // 25 // tab-width: 4 // 26 // End: //
Note: See TracChangeset
for help on using the changeset viewer.