source: benchmark/ctxswitch/cfa_cor.cfa@ 3e93c00

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 3e93c00 was dc33b5b, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

update benchmarks and add benchmarks for qthreads

  • Property mode set to 100644
File size: 386 bytes
RevLine 
[73abe95]1#include <kernel.hfa>
2#include <thread.hfa>
[de90452]3
[8cb6fcd]4#include "bench.h"
[de90452]5
[b510ac2]6coroutine GreatSuspender {};
[de90452]7
[f1dd17a]8void ?{}( GreatSuspender & this ) {
[de90452]9 prime(this);
10}
11
[ffe2fad]12void main( __attribute__((unused)) 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(
[dc33b5b]22 for ( i; n ) {
[b7170a64]23 resume( s );
24 },
[034165a]25 result
26 )
[de90452]27
[dc33b5b]28 printf("%g\n", result);
29}
Note: See TracBrowser for help on using the repository browser.