source:
benchmark/creation/upp_thrd.cc
@
aa144c5a
Last change on this file since aa144c5a was b4107c8, checked in by , 5 years ago | |
---|---|
|
|
File size: 291 bytes |
Rev | Line | |
---|---|---|
[034165a] | 1 | #include <cstdio> |
2 | ||
3 | #include "bench.h" | |
4 | ||
5 | _Task MyThread { | |
6 | void main() {} | |
7 | }; | |
8 | ||
[b4107c8] | 9 | int main( int argc, char * argv[] ) { |
10 | BENCH_START() | |
[034165a] | 11 | BENCH( |
[b4107c8] | 12 | for (size_t i = 0; i < times; i++) { |
[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.