source: benchmark/ctxswitch/cfa_cor.cfa@ aa96fba

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since aa96fba was 427854b, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

First draft implementation of generators, still missing error checking, testing and clean-up

  • Property mode set to 100644
File size: 349 bytes
RevLine 
[73abe95]1#include <kernel.hfa>
2#include <thread.hfa>
[de90452]3
[8cb6fcd]4#include "bench.h"
[de90452]5
[2316525]6coroutine C {} c;
7void main( __attribute__((unused)) C & ) {
8 while () {
[427854b]9 suspend;
[de90452]10 }
11}
[b4107c8]12int main( int argc, char * argv[] ) {
13 BENCH_START()
[034165a]14 BENCH(
[2316525]15 for ( times ) {
16 resume( c );
[b7170a64]17 },
[034165a]18 result
19 )
[b4107c8]20 printf( "%g\n", result );
[dc33b5b]21}
[b4107c8]22
23// Local Variables: //
24// tab-width: 4 //
25// End: //
Note: See TracBrowser for help on using the repository browser.