| 315 | return 0; |
| 316 | } |
| 317 | static int process_cqe(struct ctx *ctx, struct io_uring_cqe *cqe, int fdidx) |
| 318 | { |
| 319 | if (cqe->user_data < BUFFERS) |
| 320 | return process_cqe_send(ctx, cqe); |
| 321 | else |
| 322 | return process_cqe_recv(ctx, cqe, fdidx); |
| 323 | } |
| 324 | |
| 325 | int main(int argc, char *argv[]) |
| 326 | { |
no test coverage detected