Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/mutex/cfa1.cfa

    r2316525 rb4107c8  
    44#include "bench.h"
    55
    6 monitor M {} m1;
    7 void __attribute__((noinline)) call( M & mutex p1 ) {}
     6monitor M {};
     7void __attribute__((noinline)) call( M & mutex m ) {}
    88
    99int main( int argc, char * argv[] ) {
    1010        BENCH_START()
     11        M m;
    1112        BENCH(
    12                 for ( times ) {
    13                         call( m1 );
     13                for ( i; times ) {
     14                        call( m );
    1415                },
    1516                result
Note: See TracChangeset for help on using the changeset viewer.