source: benchmark/mutex/cfa1.cfa@ 69c5c00

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 69c5c00 was 2316525, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

update benchmarks for concurrency paper

  • Property mode set to 100644
File size: 330 bytes
RevLine 
[73abe95]1#include <monitor.hfa>
[f54a0ab]2#include <stdio.h>
3
4#include "bench.h"
5
[2316525]6monitor M {} m1;
7void __attribute__((noinline)) call( M & mutex p1 ) {}
[f54a0ab]8
[b4107c8]9int 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.