source: benchmark/creation/cfa_thrd.cfa @ 96f5b30

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 96f5b30 was b4107c8, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

update existing benchmarks for changes to bench.h, add new benchmarks in new programming languages

  • Property mode set to 100644
File size: 305 bytes
Line 
1#include <stdio.h>
2#include <thread.hfa>
3
4#include "bench.h"
5
6thread MyThread {};
7void main(MyThread &) {}
8
9int main( int argc, char * argv[] ) {
10        BENCH_START()
11        BENCH(
12                for ( i; times ) {
13                        MyThread m;
14                },
15                result
16        )
17        printf( "%g\n", result );
18}
19
20// Local Variables: //
21// tab-width: 4 //
22// End: //
Note: See TracBrowser for help on using the repository browser.