| 124 | }; |
| 125 | |
| 126 | static void *thread(void *t) |
| 127 | { |
| 128 | struct thread_data *td = t; |
| 129 | |
| 130 | io_uring_enable_rings(&td->ring); |
| 131 | io_uring_prep_read(io_uring_get_sqe(&td->ring), td->efd, td->buff, sizeof(td->buff), 0); |
| 132 | io_uring_submit(&td->ring); |
| 133 | |
| 134 | return NULL; |
| 135 | } |
| 136 | |
| 137 | static int test_thread_shutdown(void) |
| 138 | { |
nothing calls this directly
no test coverage detected