summaryrefslogtreecommitdiffstats
path: root/tokio/src/runtime/driver.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/runtime/driver.rs')
-rw-r--r--tokio/src/runtime/driver.rs22
1 files changed, 5 insertions, 17 deletions
diff --git a/tokio/src/runtime/driver.rs b/tokio/src/runtime/driver.rs
index 2ea50890..148e0b16 100644
--- a/tokio/src/runtime/driver.rs
+++ b/tokio/src/runtime/driver.rs
@@ -38,26 +38,14 @@ cfg_not_io_driver! {
}
// ===== signal driver =====
-
-macro_rules! cfg_unix_and_signal {
- ($($item:item)*) => {
- $(
- #[cfg(all(not(loom), unix, feature = "signal"))]
- $item
- )*
- }
-}
-
-macro_rules! cfg_neither_unix_nor_windows {
+macro_rules! cfg_signal_internal_and_unix {
($($item:item)*) => {
- $(
- #[cfg(any(loom, not(all(unix, feature = "signal"))))]
- $item
- )*
+ #[cfg(unix)]
+ cfg_signal_internal! { $($item)* }
}
}
-cfg_unix_and_signal! {
+cfg_signal_internal_and_unix! {
type SignalDriver = crate::park::Either<crate::signal::unix::driver::Driver, IoDriver>;
pub(crate) type SignalHandle = Option<crate::signal::unix::driver::Handle>;
@@ -76,7 +64,7 @@ cfg_unix_and_signal! {
}
}
-cfg_neither_unix_nor_windows! {
+cfg_not_signal_internal! {
type SignalDriver = IoDriver;
pub(crate) type SignalHandle = ();