Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/mutex/cfa2.cfa

    rb4107c8 r2316525  
    44#include "bench.h"
    55
    6 monitor M {};
    7 void __attribute__((noinline)) call( M & mutex m1, M & mutex m2 ) {}
     6monitor M {} m1, m2;
     7
     8void __attribute__((noinline)) call( M & mutex p1, M & mutex p2 ) {}
    89
    910int main( int argc, char * argv[] ) {
    1011        BENCH_START()
    11         M m1, m2;
    1212        BENCH(
    13                 for ( i; times ) {
     13                for ( times ) {
    1414                        call( m1, m2 );
    1515                },
Note: See TracChangeset for help on using the changeset viewer.