MCPcopy Create free account
hub / github.com/axboe/liburing / process_cqe

Function process_cqe

examples/io_uring-udp.c:317–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

315 return 0;
316}
317static 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
325int main(int argc, char *argv[])
326{

Callers 1

mainFunction · 0.85

Calls 2

process_cqe_sendFunction · 0.85
process_cqe_recvFunction · 0.85

Tested by

no test coverage detected