| 452 | } |
| 453 | |
| 454 | int io_uring_submit_and_wait_timeout(struct io_uring *ring, |
| 455 | struct io_uring_cqe **cqe_ptr, |
| 456 | unsigned wait_nr, |
| 457 | struct __kernel_timespec *ts, |
| 458 | sigset_t *sigmask) |
| 459 | { |
| 460 | return __io_uring_submit_and_wait_timeout(ring, cqe_ptr, wait_nr, ts, 0, |
| 461 | sigmask); |
| 462 | } |
| 463 | |
| 464 | /* |
| 465 | * See io_uring_wait_cqes() - this function is the same, it just always uses |