source: benchmark/ctxswitch/cfa_cor.c@ 72a5a75

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr no_list persistent-indexer pthread-emulation qualifiedEnum
Last change on this file since 72a5a75 was 73abe95, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Replace extension-less headers with .hfa

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