source: benchmark/ctxswitch/cfa_cor.cfa@ 98b4b12

ADT arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 98b4b12 was 5e49e47, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Fix code rot in benchmark (not jenkins)

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