| 18 | static pthread_mutex_t mutex; |
| 19 | |
| 20 | static void msec_to_ts(struct __kernel_timespec *ts, unsigned int msec) |
| 21 | { |
| 22 | ts->tv_sec = msec / 1000; |
| 23 | ts->tv_nsec = (msec % 1000) * 1000000; |
| 24 | } |
| 25 | |
| 26 | static int test_return_before_timeout(struct io_uring *ring) |
| 27 | { |
no outgoing calls