()
| 59 | /// The result is cached so the probe runs at most once per process. |
| 60 | #[cfg(feature = "io_uring")] |
| 61 | fn io_uring_supported() -> bool { |
| 62 | static SUPPORTED: OnceLock<bool> = OnceLock::new(); |
| 63 | *SUPPORTED.get_or_init(block_io_uring_is_supported) |
| 64 | } |
| 65 | |
| 66 | /// Returns true when Linux AIO is supported on the running kernel. |
| 67 | /// |
no test coverage detected