From d700dc2bbbc5e058f191c4eca5e5c9c55865522f Mon Sep 17 00:00:00 2001 From: wireless4024 Date: Sun, 12 Feb 2023 20:43:39 +0700 Subject: [PATCH] merge System struct in io_uring feature --- actix-rt/src/system.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/actix-rt/src/system.rs b/actix-rt/src/system.rs index 4441f2f1..6968efda 100644 --- a/actix-rt/src/system.rs +++ b/actix-rt/src/system.rs @@ -29,7 +29,7 @@ pub struct System { arbiter_handle: ArbiterHandle, } -#[cfg(not(feature = "io-uring"))] +//#[cfg(not(feature = "io-uring"))] impl System { /// Create a new system. /// @@ -48,7 +48,7 @@ impl System { /// [tokio-runtime]: tokio::runtime::Runtime pub fn with_tokio_rt(runtime_factory: F) -> SystemRunner where - F: Fn() -> tokio::runtime::Runtime, + F: Fn() -> crate::runtime::GlobalRuntime, { let (stop_tx, stop_rx) = oneshot::channel(); let (sys_tx, sys_rx) = mpsc::unbounded_channel(); @@ -69,7 +69,7 @@ impl System { SystemRunner { rt, stop_rx } } } - +/* #[cfg(feature = "io-uring")] impl System { /// Create a new system. @@ -113,7 +113,7 @@ impl System { let rt = crate::runtime::Runtime::from(rt); SystemRunner { rt, stop_rx } } -} +}*/ impl System { /// Constructs new system and registers it on the current thread.