Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/io.cfa

    r21a5bfb7 r70b4aeb9  
    306306                ctx->proc->io.pending = true;
    307307                ctx->proc->io.dirty   = true;
    308                 if(sq.to_submit > 30 || !lazy) {
     308                if(sq.to_submit > 30) {
     309                        __tls_stats()->io.flush.full++;
     310                        __cfa_io_flush( ctx->proc, 0 );
     311                }
     312                if(!lazy) {
     313                        __tls_stats()->io.flush.eager++;
    309314                        __cfa_io_flush( ctx->proc, 0 );
    310315                }
     
    552557                        /* paranoid */ verify( proc == __cfaabi_tls.this_processor );
    553558                        /* paranoid */ verify( ! __preemption_enabled() );
     559
     560                        return true;
    554561                }
    555562        #endif
Note: See TracChangeset for help on using the changeset viewer.