source: benchmark/ctxswitch/kos_fibre2.cpp @ 665f432

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 665f432 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: 378 bytes
Line 
1#include <libfibre/fibre.h>
2
3#include "bench.h"
4
5volatile bool done = false;
6
7static void f1main() {
8        while(!done) {
9                Fibre::yield();
10        }
11}
12
13int main(int argc, char* argv[]) {
14        Fibre* f1 = (new Fibre)->run(f1main);
15        BENCH(
16                for (size_t i = 0; i < n; i++) {
17                        Fibre::yield();
18                },
19                result
20        )
21        printf("%g\n", result);
22        done = true;
23        Fibre::yield();
24        f1->join();
25        return 0;
26}
Note: See TracBrowser for help on using the repository browser.