source: benchmark/ctxswitch/cfa_cor.cfa @ dfa4360

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since dfa4360 was 427854b, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

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

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