Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/mutex/cfa1.cfa

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