Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/mutex/cfa2.cfa

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