Skip to content

Commit

Permalink
try pass CI in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
loongs-zhang committed Feb 20, 2024
1 parent 8243ca5 commit 5ddfe60
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions monoio/src/driver/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,7 @@ impl Inner {
not(all(target_os = "linux", feature = "iouring"))
))]
_ => {
#[cfg(unix)]
util::feature_panic();
#[cfg(windows)]
unimplemented!();
}
}
}
Expand All @@ -124,8 +121,6 @@ impl Inner {
cx: &mut Context<'_>,
) -> Poll<CompletionMeta> {
match self {
#[cfg(windows)]
_ => unimplemented!(),
#[cfg(all(target_os = "linux", feature = "iouring"))]
Inner::Uring(this) => UringInner::poll_op(this, index, cx),
#[cfg(feature = "legacy")]
Expand All @@ -147,8 +142,6 @@ impl Inner {
cx: &mut Context<'_>,
) -> Poll<CompletionMeta> {
match self {
#[cfg(windows)]
_ => unimplemented!(),
#[cfg(all(target_os = "linux", feature = "iouring"))]
Inner::Uring(this) => UringInner::poll_legacy_op(this, data, cx),
#[cfg(feature = "legacy")]
Expand Down Expand Up @@ -183,8 +176,6 @@ impl Inner {
#[allow(unused)]
pub(super) unsafe fn cancel_op(&self, op_canceller: &op::OpCanceller) {
match self {
#[cfg(windows)]
_ => unimplemented!(),
#[cfg(all(target_os = "linux", feature = "iouring"))]
Inner::Uring(this) => UringInner::cancel_op(this, op_canceller.index),
#[cfg(feature = "legacy")]
Expand Down

0 comments on commit 5ddfe60

Please sign in to comment.