Ignore:
File:
1 edited

Legend:

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

    r70b4aeb9 r21a5bfb7  
    306306                ctx->proc->io.pending = true;
    307307                ctx->proc->io.dirty   = true;
    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++;
     308                if(sq.to_submit > 30 || !lazy) {
    314309                        __cfa_io_flush( ctx->proc, 0 );
    315310                }
     
    557552                        /* paranoid */ verify( proc == __cfaabi_tls.this_processor );
    558553                        /* paranoid */ verify( ! __preemption_enabled() );
    559 
    560                         return true;
    561554                }
    562555        #endif
Note: See TracChangeset for help on using the changeset viewer.