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