source:
benchmark/mutex/cfa1.cfa
@
b0b89a8
Last change on this file since b0b89a8 was 2316525, checked in by , 5 years ago | |
---|---|
|
|
File size: 330 bytes |
Rev | Line | |
---|---|---|
[73abe95] | 1 | #include <monitor.hfa> |
[f54a0ab] | 2 | #include <stdio.h> |
3 | ||
4 | #include "bench.h" | |
5 | ||
[2316525] | 6 | monitor M {} m1; |
7 | void __attribute__((noinline)) call( M & mutex p1 ) {} | |
[f54a0ab] | 8 | |
[b4107c8] | 9 | int main( int argc, char * argv[] ) { |
10 | BENCH_START() | |
[f54a0ab] | 11 | BENCH( |
[2316525] | 12 | for ( times ) { |
13 | call( m1 ); | |
[f54a0ab] | 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.