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

Function __io_uring_get_cqe

src/queue.c:146–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144}
145
146int __io_uring_get_cqe(struct io_uring *ring, struct io_uring_cqe **cqe_ptr,
147 unsigned submit, unsigned wait_nr, sigset_t *sigmask)
148{
149 struct get_data data = {
150 .submit = submit,
151 .wait_nr = wait_nr,
152 .get_flags = 0,
153 .sz = _NSIG / 8,
154 .arg = sigmask,
155 };
156
157 return _io_uring_get_cqe(ring, cqe_ptr, &data);
158}
159
160int io_uring_get_events(struct io_uring *ring)
161{

Callers 3

io_uring_wait_cqesFunction · 0.85
liburing.hFile · 0.85

Calls 1

_io_uring_get_cqeFunction · 0.85

Tested by

no test coverage detected