Changes in / [81e1f32b:fc67d6f]


Ignore:
Location:
src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/Concurrency/Waitfor.cc

    r81e1f32b rfc67d6f  
    507507                        new ListInit({
    508508                                new SingleInit( new AddressExpr( new VariableExpr( index ) ) ),
    509                                 new ListInit({
    510                                         new SingleInit( new VariableExpr( acceptables ) ),
    511                                         new SingleInit( new ConstantExpr( Constant::from_ulong( count ) ) )
    512                                 })
     509                                new SingleInit( new VariableExpr( acceptables ) ),
     510                                new SingleInit( new ConstantExpr( Constant::from_ulong( count ) ) )
    513511                        })
    514512                );
  • src/benchmark/Makefile.am

    r81e1f32b rfc67d6f  
    198198
    199199waitfor-cfa1$(EXEEXT):
    200         @${CC}        schedext/cfa1.c     -DBENCH_N=500000      -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags}
     200        ${CC}        schedext/cfa1.c     -DBENCH_N=500000      -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags}
    201201
    202202waitfor-cfa2$(EXEEXT):
  • src/benchmark/Makefile.in

    r81e1f32b rfc67d6f  
    607607
    608608waitfor-cfa1$(EXEEXT):
    609         @${CC}        schedext/cfa1.c     -DBENCH_N=500000      -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags}
     609        ${CC}        schedext/cfa1.c     -DBENCH_N=500000      -I. -nodebug -lrt -quiet @CFA_FLAGS@ ${AM_CFLAGS} ${CFLAGS} ${ccflags}
    610610
    611611waitfor-cfa2$(EXEEXT):
  • src/libcfa/concurrency/preemption.c

    r81e1f32b rfc67d6f  
    300300        // Check if it is safe to preempt here
    301301        if( !preemption_ready() ) { return; }
    302 
    303         // __cfaabi_dbg_print_buffer_decl(" KERNEL: preempting core %p (%p).\n", this_processor, this_thread);
    304302
    305303        preemption_in_progress = true;                      // Sync flag : prevent recursive calls to the signal handler
Note: See TracChangeset for help on using the changeset viewer.