Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
boazsegev committed Feb 1, 2025
1 parent 9435b6b commit be0db92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions fio-stl.h
Original file line number Diff line number Diff line change
Expand Up @@ -36985,9 +36985,8 @@ FIO_SFUNC void fio___io_tick(int timeout) {
FIO_LIST_EACH(fio_io_async_s, node, &FIO___IO.async, a) {
fio_timer_push2queue(a->q, &a->timers, FIO___IO.tick);
}
for (size_t i = 0; i < 2048; ++i)
if (fio_queue_perform(&FIO___IO.queue))
break;
for (size_t i = 0; i < 2048 && !fio_queue_perform(&FIO___IO.queue); ++i)
;
fio___io_review_timeouts();
fio_signal_review();
}
Expand Down
5 changes: 2 additions & 3 deletions fio-stl/402 io reactor.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,8 @@ FIO_SFUNC void fio___io_tick(int timeout) {
FIO_LIST_EACH(fio_io_async_s, node, &FIO___IO.async, a) {
fio_timer_push2queue(a->q, &a->timers, FIO___IO.tick);
}
for (size_t i = 0; i < 2048; ++i)
if (fio_queue_perform(&FIO___IO.queue))
break;
for (size_t i = 0; i < 2048 && !fio_queue_perform(&FIO___IO.queue); ++i)
;
fio___io_review_timeouts();
fio_signal_review();
}
Expand Down

0 comments on commit be0db92

Please sign in to comment.