Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/mutex/cfa4.cfa

    r2316525 rb4107c8  
    55
    66
    7 monitor M {} m1, m2, m3, m4;
    8 void __attribute__((noinline)) call( M & mutex p1, M & mutex p2, M & mutex p3, M & mutex p4 ) {}
     7monitor M {};
     8void __attribute__((noinline)) call( M & mutex m1, M & mutex m2, M & mutex m3, M & mutex m4 ) {}
    99
    1010int main( int argc, char * argv[] ) {
    1111        BENCH_START()
     12        M m1, m2, m3, m4;
    1213        BENCH(
    13                 for ( times ) {
     14                for ( i; times ) {
    1415                        call( m1, m2, m3, m4 );
    1516                },
Note: See TracChangeset for help on using the changeset viewer.