source: src/benchmark/ctxswitch/cfa_cor.c@ 16a63a78

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 new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 16a63a78 was b7170a64, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Updated the creation and ctxswitch benchmark to all be consistent and flexible

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