| ... | @@ -2329,7 +2329,8 @@ test "timeout_remove" { | ... | @@ -2329,7 +2329,8 @@ test "timeout_remove" { |
| 2329 | // * kernel 5.18 gives user data 0x99999999 first, 0x88888888 second | 2329 | // * kernel 5.18 gives user data 0x99999999 first, 0x88888888 second |
| 2330 | | 2330 | |
| 2331 | var cqes: [2]os.linux.io_uring_cqe = undefined; | 2331 | var cqes: [2]os.linux.io_uring_cqe = undefined; |
| 2332 | try testing.expectEqual(@as(u32, 2), try ring.copy_cqes(cqes[0..], 2)); | 2332 | cqes[0] = try ring.copy_cqe(); |
| | 2333 | cqes[1] = try ring.copy_cqe(); |
| 2333 | | 2334 | |
| 2334 | for (cqes) |cqe| { | 2335 | for (cqes) |cqe| { |
| 2335 | // IORING_OP_TIMEOUT_REMOVE is not supported by this kernel version: | 2336 | // IORING_OP_TIMEOUT_REMOVE is not supported by this kernel version: |