source: benchmark/ctxswitch/cfa_cor_then.cfa @ f8a8fb1

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since f8a8fb1 was dc33b5b, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

update benchmarks and add benchmarks for qthreads

  • Property mode set to 100644
File size: 415 bytes
Line 
1#include <kernel.hfa>
2#include <thread.hfa>
3
4#include "bench.h"
5
6void noOp(void) {}
7
8coroutine GreatSuspender {};
9
10void ?{}( GreatSuspender & this ) {
11        prime(this);
12}
13
14void main( __attribute__((unused)) GreatSuspender & this ) {
15        while( true ) {
16                suspend_then(noOp);
17        }
18}
19
20int main(int argc, char* argv[]) {
21        GreatSuspender s;
22
23        BENCH(
24                for ( i; n ) {
25                        resume( s );
26                },
27                result
28        )
29
30        printf("%g\n", result);
31}
Note: See TracBrowser for help on using the repository browser.