ringbahn / ringbahn

safe bindings to io-uring

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support linked submissions

withoutboats opened this issue · comments

io-uring provides several flags to enable users to sequence and link different submitted events together, so that they can guarantee a certain temporal relationship between those events even when submitting them simultaneously. This library should provide a way to safely implement events in that manner.

The iou API now supports this. The only correct way to link things in ringbahn is hard_linked, though.