diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-06-26 11:47:41 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-06-26 11:47:41 -0400 |
commit | abd29143d805fa16c65489d5b1d79428943d0187 (patch) | |
tree | e3f87d3dd0310686a1ed18cb8e1452ba460ab1a6 /src/ioq.h | |
parent | 6b96d7b0ad73e6ed63cf5e32fd2544121e2b0284 (diff) | |
download | bfs-abd29143d805fa16c65489d5b1d79428943d0187.tar.xz |
ioq: New ioq_cancel() function
Diffstat (limited to 'src/ioq.h')
-rw-r--r-- | src/ioq.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -89,6 +89,11 @@ struct ioq_res *ioq_trypop(struct ioq *ioq); void ioq_free(struct ioq *ioq, struct ioq_res *res); /** + * Cancel any pending I/O operations. + */ +void ioq_cancel(struct ioq *ioq); + +/** * Stop and destroy an I/O queue. */ void ioq_destroy(struct ioq *ioq); |