| 27 | }; |
| 28 | |
| 29 | static struct fds create_sockets(void) |
| 30 | { |
| 31 | struct fds retval; |
| 32 | int fd[2]; |
| 33 | |
| 34 | t_create_socket_pair(fd, true); |
| 35 | |
| 36 | retval.tx = fd[0]; |
| 37 | retval.rx = fd[1]; |
| 38 | |
| 39 | return retval; |
| 40 | } |
| 41 | |
| 42 | static struct io_uring create_ring(void) |
| 43 | { |
no test coverage detected