| author | |
| committer | |
| log | cb591285d74d9333576b746d41f8c6288701fb96 |
| tree | 9ac978b281c4a2c069facdf979371dedba30b90b |
| parent | 31533eb74300ad934d3fca11ffebd86fe67a31ba |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/os/linux/io_uring.zig+1-1| ... | ... | @@ -279,7 +279,7 @@ pub const IO_Uring = struct { |
| 279 | 279 | |
| 280 | 280 | // Matches the implementation of cq_ring_needs_flush() in liburing. |
| 281 | 281 | fn cq_ring_needs_flush(self: *IO_Uring) bool { |
| 282 | return (@atomicLoad(u32, self.sq.flags, .Unordered) & IORING_SQ_CQ_OVERFLOW) != 0; | |
| 282 | return (@atomicLoad(u32, self.sq.flags, .Unordered) & linux.IORING_SQ_CQ_OVERFLOW) != 0; | |
| 283 | 283 | } |
| 284 | 284 | |
| 285 | 285 | /// For advanced use cases only that implement custom completion queue methods. |