source:
benchmark/creation/cfa_thrd.cfa
@
df40a56
Last change on this file since df40a56 was 2316525, checked in by , 5 years ago | |
---|---|
|
|
File size: 302 bytes |
Rev | Line | |
---|---|---|
[034165a] | 1 | #include <stdio.h> |
[73abe95] | 2 | #include <thread.hfa> |
[034165a] | 3 | |
4 | #include "bench.h" | |
5 | ||
6 | thread MyThread {}; | |
[dc33b5b] | 7 | void main(MyThread &) {} |
[034165a] | 8 | |
[b4107c8] | 9 | int main( int argc, char * argv[] ) { |
10 | BENCH_START() | |
[034165a] | 11 | BENCH( |
[2316525] | 12 | for ( times ) { |
[034165a] | 13 | MyThread m; |
14 | }, | |
15 | result | |
16 | ) | |
[b4107c8] | 17 | printf( "%g\n", result ); |
[dc33b5b] | 18 | } |
[b4107c8] | 19 | |
20 | // Local Variables: // | |
21 | // tab-width: 4 // | |
22 | // End: // |
Note: See TracBrowser
for help on using the repository browser.