source:
benchmark/creation/cfa_thrd.cfa@
0e6cadf1
| Last change on this file since 0e6cadf1 was 2316525, checked in by , 6 years ago | |
|---|---|
|
|
| File size: 302 bytes | |
| Line | |
|---|---|
| 1 | #include <stdio.h> |
| 2 | #include <thread.hfa> |
| 3 | |
| 4 | #include "bench.h" |
| 5 | |
| 6 | thread MyThread {}; |
| 7 | void main(MyThread &) {} |
| 8 | |
| 9 | int main( int argc, char * argv[] ) { |
| 10 | BENCH_START() |
| 11 | BENCH( |
| 12 | for ( 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.