compio_driver/sys/op/multishot/mod.rs
1#[allow(unused_imports)]
2use crate::sys::prelude::mod_use;
3
4cfg_select! {
5 fusion => {
6 mod iour;
7 mod poll;
8
9 crate::macros::fuse_op!(<S: AsFd> AcceptMulti(fd: S));
10 }
11 io_uring => {
12 mod_use![iour];
13 }
14 polling => {
15 mod_use![poll];
16 }
17 stub => {
18 mod_use![stub];
19 }
20 _ => {}
21}