diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-08-15 17:15:51 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-08-15 17:15:51 -0700 |
commit | 566684ac9fc98c7519aaafa42f88e11372e43899 (patch) | |
tree | 263f1f2d7dcf1e21d9e68a53861bf678bd6a1d09 /src/iou.h | |
parent | c7d7e01bf5da362c4a8065efedc6dc7836471f61 (diff) |
iou: add iou_ring() iou->ring accessor
To enable direct use of more liburing helpers, we need to make
the ring struct available to external callers.
The immediate impetus for adding this is registering files...
Diffstat (limited to 'src/iou.h')
-rw-r--r-- | src/iou.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -35,5 +35,6 @@ int iou_flush(iou_t *iou); int iou_run(iou_t *iou); int iou_quit(iou_t *iou); int iou_resize(iou_t *iou, unsigned entries); +struct io_uring * iou_ring(iou_t *iou); #endif |