Changes in libcfa/src/concurrency/io.cfa [70b4aeb9:21a5bfb7]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io.cfa
r70b4aeb9 r21a5bfb7 306 306 ctx->proc->io.pending = true; 307 307 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) { 314 309 __cfa_io_flush( ctx->proc, 0 ); 315 310 } … … 557 552 /* paranoid */ verify( proc == __cfaabi_tls.this_processor ); 558 553 /* paranoid */ verify( ! __preemption_enabled() ); 559 560 return true;561 554 } 562 555 #endif
Note:
See TracChangeset
for help on using the changeset viewer.