time: revert "use sharding for timer implementation" related changes (#7226)

The work on sharding the timer implementation has caused a measurable performance regression due to increased contention. This patch reverts the current work on sharding. The next step will be to work on a per-worker timer wheel.
This commit is contained in:
Carl Lerche
2025-05-05 10:48:02 -07:00
committed by GitHub
parent 8895bba448
commit 1ae9434e8e
11 changed files with 70 additions and 212 deletions
-5
View File
@@ -24,11 +24,6 @@ pub(crate) mod sync {
pub(crate) fn try_lock(&self) -> Option<MutexGuard<'_, T>> { pub(crate) fn try_lock(&self) -> Option<MutexGuard<'_, T>> {
self.0.try_lock().ok() self.0.try_lock().ok()
} }
#[inline]
pub(crate) fn get_mut(&mut self) -> &mut T {
self.0.get_mut().unwrap()
}
} }
#[derive(Debug)] #[derive(Debug)]
-8
View File
@@ -33,12 +33,4 @@ impl<T> Mutex<T> {
Err(TryLockError::WouldBlock) => None, Err(TryLockError::WouldBlock) => None,
} }
} }
#[inline]
pub(crate) fn get_mut(&mut self) -> &mut T {
match self.0.get_mut() {
Ok(val) => val,
Err(p_err) => p_err.into_inner(),
}
}
} }
+3 -4
View File
@@ -924,7 +924,7 @@ impl Builder {
} }
} }
fn get_cfg(&self, workers: usize) -> driver::Cfg { fn get_cfg(&self) -> driver::Cfg {
driver::Cfg { driver::Cfg {
enable_pause_time: match self.kind { enable_pause_time: match self.kind {
Kind::CurrentThread => true, Kind::CurrentThread => true,
@@ -935,7 +935,6 @@ impl Builder {
enable_time: self.enable_time, enable_time: self.enable_time,
start_paused: self.start_paused, start_paused: self.start_paused,
nevents: self.nevents, nevents: self.nevents,
workers,
} }
} }
@@ -1453,7 +1452,7 @@ impl Builder {
use crate::runtime::scheduler; use crate::runtime::scheduler;
use crate::runtime::Config; use crate::runtime::Config;
let (driver, driver_handle) = driver::Driver::new(self.get_cfg(1))?; let (driver, driver_handle) = driver::Driver::new(self.get_cfg())?;
// Blocking pool // Blocking pool
let blocking_pool = blocking::create_blocking_pool(self, self.max_blocking_threads); let blocking_pool = blocking::create_blocking_pool(self, self.max_blocking_threads);
@@ -1608,7 +1607,7 @@ cfg_rt_multi_thread! {
let worker_threads = self.worker_threads.unwrap_or_else(num_cpus); let worker_threads = self.worker_threads.unwrap_or_else(num_cpus);
let (driver, driver_handle) = driver::Driver::new(self.get_cfg(worker_threads))?; let (driver, driver_handle) = driver::Driver::new(self.get_cfg())?;
// Create the blocking pool // Create the blocking pool
let blocking_pool = let blocking_pool =
+4 -8
View File
@@ -3,7 +3,7 @@ use crate::task::coop;
use std::cell::Cell; use std::cell::Cell;
#[cfg(any(feature = "rt", feature = "macros", feature = "time"))] #[cfg(any(feature = "rt", feature = "macros"))]
use crate::util::rand::FastRand; use crate::util::rand::FastRand;
cfg_rt! { cfg_rt! {
@@ -57,7 +57,7 @@ struct Context {
#[cfg(feature = "rt")] #[cfg(feature = "rt")]
runtime: Cell<EnterRuntime>, runtime: Cell<EnterRuntime>,
#[cfg(any(feature = "rt", feature = "macros", feature = "time"))] #[cfg(any(feature = "rt", feature = "macros"))]
rng: Cell<Option<FastRand>>, rng: Cell<Option<FastRand>>,
/// Tracks the amount of "work" a task may still do before yielding back to /// Tracks the amount of "work" a task may still do before yielding back to
@@ -100,7 +100,7 @@ tokio_thread_local! {
#[cfg(feature = "rt")] #[cfg(feature = "rt")]
runtime: Cell::new(EnterRuntime::NotEntered), runtime: Cell::new(EnterRuntime::NotEntered),
#[cfg(any(feature = "rt", feature = "macros", feature = "time"))] #[cfg(any(feature = "rt", feature = "macros"))]
rng: Cell::new(None), rng: Cell::new(None),
budget: Cell::new(coop::Budget::unconstrained()), budget: Cell::new(coop::Budget::unconstrained()),
@@ -121,11 +121,7 @@ tokio_thread_local! {
} }
} }
#[cfg(any( #[cfg(any(feature = "macros", all(feature = "sync", feature = "rt")))]
feature = "time",
feature = "macros",
all(feature = "sync", feature = "rt")
))]
pub(crate) fn thread_rng_n(n: u32) -> u32 { pub(crate) fn thread_rng_n(n: u32) -> u32 {
CONTEXT.with(|ctx| { CONTEXT.with(|ctx| {
let mut rng = ctx.rng.get().unwrap_or_else(FastRand::new); let mut rng = ctx.rng.get().unwrap_or_else(FastRand::new);
+2 -6
View File
@@ -40,7 +40,6 @@ pub(crate) struct Cfg {
pub(crate) enable_pause_time: bool, pub(crate) enable_pause_time: bool,
pub(crate) start_paused: bool, pub(crate) start_paused: bool,
pub(crate) nevents: usize, pub(crate) nevents: usize,
pub(crate) workers: usize,
} }
impl Driver { impl Driver {
@@ -49,8 +48,7 @@ impl Driver {
let clock = create_clock(cfg.enable_pause_time, cfg.start_paused); let clock = create_clock(cfg.enable_pause_time, cfg.start_paused);
let (time_driver, time_handle) = let (time_driver, time_handle) = create_time_driver(cfg.enable_time, io_stack, &clock);
create_time_driver(cfg.enable_time, io_stack, &clock, cfg.workers);
Ok(( Ok((
Self { inner: time_driver }, Self { inner: time_driver },
@@ -297,10 +295,9 @@ cfg_time! {
enable: bool, enable: bool,
io_stack: IoStack, io_stack: IoStack,
clock: &Clock, clock: &Clock,
workers: usize,
) -> (TimeDriver, TimeHandle) { ) -> (TimeDriver, TimeHandle) {
if enable { if enable {
let (driver, handle) = crate::runtime::time::Driver::new(io_stack, clock, workers as u32); let (driver, handle) = crate::runtime::time::Driver::new(io_stack, clock);
(TimeDriver::Enabled { driver }, Some(handle)) (TimeDriver::Enabled { driver }, Some(handle))
} else { } else {
@@ -346,7 +343,6 @@ cfg_not_time! {
_enable: bool, _enable: bool,
io_stack: IoStack, io_stack: IoStack,
_clock: &Clock, _clock: &Clock,
_workers: usize,
) -> (TimeDriver, TimeHandle) { ) -> (TimeDriver, TimeHandle) {
(io_stack, ()) (io_stack, ())
} }
@@ -790,11 +790,6 @@ impl Context {
self.defer.defer(waker); self.defer.defer(waker);
} }
} }
#[allow(dead_code)]
pub(crate) fn get_worker_index(&self) -> usize {
self.worker.index
}
} }
impl Core { impl Core {
+2 -33
View File
@@ -58,7 +58,6 @@ use crate::loom::cell::UnsafeCell;
use crate::loom::sync::atomic::AtomicU64; use crate::loom::sync::atomic::AtomicU64;
use crate::loom::sync::atomic::Ordering; use crate::loom::sync::atomic::Ordering;
use crate::runtime::context;
use crate::runtime::scheduler; use crate::runtime::scheduler;
use crate::sync::AtomicWaker; use crate::sync::AtomicWaker;
use crate::time::Instant; use crate::time::Instant;
@@ -329,8 +328,6 @@ pub(super) type EntryList = crate::util::linked_list::LinkedList<TimerShared, Ti
/// ///
/// Note that this structure is located inside the `TimerEntry` structure. /// Note that this structure is located inside the `TimerEntry` structure.
pub(crate) struct TimerShared { pub(crate) struct TimerShared {
/// The shard id. We should never change it.
shard_id: u32,
/// A link within the doubly-linked list of timers on a particular level and /// A link within the doubly-linked list of timers on a particular level and
/// slot. Valid only if state is equal to Registered. /// slot. Valid only if state is equal to Registered.
/// ///
@@ -371,9 +368,8 @@ generate_addr_of_methods! {
} }
impl TimerShared { impl TimerShared {
pub(super) fn new(shard_id: u32) -> Self { pub(super) fn new() -> Self {
Self { Self {
shard_id,
cached_when: AtomicU64::new(0), cached_when: AtomicU64::new(0),
pointers: linked_list::Pointers::new(), pointers: linked_list::Pointers::new(),
state: StateCell::default(), state: StateCell::default(),
@@ -442,11 +438,6 @@ impl TimerShared {
pub(super) fn might_be_registered(&self) -> bool { pub(super) fn might_be_registered(&self) -> bool {
self.state.might_be_registered() self.state.might_be_registered()
} }
/// Gets the shard id.
pub(super) fn shard_id(&self) -> u32 {
self.shard_id
}
} }
unsafe impl linked_list::Link for TimerShared { unsafe impl linked_list::Link for TimerShared {
@@ -494,10 +485,8 @@ impl TimerEntry {
fn inner(&self) -> &TimerShared { fn inner(&self) -> &TimerShared {
let inner = unsafe { &*self.inner.get() }; let inner = unsafe { &*self.inner.get() };
if inner.is_none() { if inner.is_none() {
let shard_size = self.driver.driver().time().inner.get_shard_size();
let shard_id = generate_shard_id(shard_size);
unsafe { unsafe {
*self.inner.get() = Some(TimerShared::new(shard_id)); *self.inner.get() = Some(TimerShared::new());
} }
} }
return inner.as_ref().unwrap(); return inner.as_ref().unwrap();
@@ -654,23 +643,3 @@ impl Drop for TimerEntry {
unsafe { Pin::new_unchecked(self) }.as_mut().cancel(); unsafe { Pin::new_unchecked(self) }.as_mut().cancel();
} }
} }
// Generates a shard id. If current thread is a worker thread, we use its worker index as a shard id.
// Otherwise, we use a random number generator to obtain the shard id.
cfg_rt! {
fn generate_shard_id(shard_size: u32) -> u32 {
let id = context::with_scheduler(|ctx| match ctx {
Some(scheduler::Context::CurrentThread(_ctx)) => 0,
#[cfg(feature = "rt-multi-thread")]
Some(scheduler::Context::MultiThread(ctx)) => ctx.get_worker_index() as u32,
None => context::thread_rng_n(shard_size),
});
id % shard_size
}
}
cfg_not_rt! {
fn generate_shard_id(shard_size: u32) -> u32 {
context::thread_rng_n(shard_size)
}
}
+51 -132
View File
@@ -12,7 +12,6 @@ use entry::{EntryList, TimerHandle, TimerShared, MAX_SAFE_MILLIS_DURATION};
mod handle; mod handle;
pub(crate) use self::handle::Handle; pub(crate) use self::handle::Handle;
use self::wheel::Wheel;
mod source; mod source;
pub(crate) use source::TimeSource; pub(crate) use source::TimeSource;
@@ -20,34 +19,15 @@ pub(crate) use source::TimeSource;
mod wheel; mod wheel;
use crate::loom::sync::atomic::{AtomicBool, Ordering}; use crate::loom::sync::atomic::{AtomicBool, Ordering};
use crate::loom::sync::{Mutex, RwLock}; use crate::loom::sync::Mutex;
use crate::runtime::driver::{self, IoHandle, IoStack}; use crate::runtime::driver::{self, IoHandle, IoStack};
use crate::time::error::Error; use crate::time::error::Error;
use crate::time::{Clock, Duration}; use crate::time::{Clock, Duration};
use crate::util::WakeList; use crate::util::WakeList;
use crate::loom::sync::atomic::AtomicU64;
use std::fmt; use std::fmt;
use std::{num::NonZeroU64, ptr::NonNull}; use std::{num::NonZeroU64, ptr::NonNull};
struct AtomicOptionNonZeroU64(AtomicU64);
// A helper type to store the `next_wake`.
impl AtomicOptionNonZeroU64 {
fn new(val: Option<NonZeroU64>) -> Self {
Self(AtomicU64::new(val.map_or(0, NonZeroU64::get)))
}
fn store(&self, val: Option<NonZeroU64>) {
self.0
.store(val.map_or(0, NonZeroU64::get), Ordering::Relaxed);
}
fn load(&self) -> Option<NonZeroU64> {
NonZeroU64::new(self.0.load(Ordering::Relaxed))
}
}
/// Time implementation that drives [`Sleep`][sleep], [`Interval`][interval], and [`Timeout`][timeout]. /// Time implementation that drives [`Sleep`][sleep], [`Interval`][interval], and [`Timeout`][timeout].
/// ///
/// A `Driver` instance tracks the state necessary for managing time and /// A `Driver` instance tracks the state necessary for managing time and
@@ -111,14 +91,8 @@ pub(crate) struct Driver {
/// Timer state shared between `Driver`, `Handle`, and `Registration`. /// Timer state shared between `Driver`, `Handle`, and `Registration`.
struct Inner { struct Inner {
/// The earliest time at which we promise to wake up without unparking. // The state is split like this so `Handle` can access `is_shutdown` without locking the mutex
next_wake: AtomicOptionNonZeroU64, pub(super) state: Mutex<InnerState>,
/// Sharded Timer wheels.
wheels: RwLock<ShardedWheel>,
/// Number of entries in the sharded timer wheels.
wheels_len: u32,
/// True if the driver is being shutdown. /// True if the driver is being shutdown.
pub(super) is_shutdown: AtomicBool, pub(super) is_shutdown: AtomicBool,
@@ -133,8 +107,14 @@ struct Inner {
did_wake: AtomicBool, did_wake: AtomicBool,
} }
/// Wrapper around the sharded timer wheels. /// Time state shared which must be protected by a `Mutex`
struct ShardedWheel(Box<[Mutex<wheel::Wheel>]>); struct InnerState {
/// The earliest time at which we promise to wake up without unparking.
next_wake: Option<NonZeroU64>,
/// Timer wheel.
wheel: wheel::Wheel,
}
// ===== impl Driver ===== // ===== impl Driver =====
@@ -143,21 +123,18 @@ impl Driver {
/// thread and `time_source` to get the current time and convert to ticks. /// thread and `time_source` to get the current time and convert to ticks.
/// ///
/// Specifying the source of time is useful when testing. /// Specifying the source of time is useful when testing.
pub(crate) fn new(park: IoStack, clock: &Clock, shards: u32) -> (Driver, Handle) { pub(crate) fn new(park: IoStack, clock: &Clock) -> (Driver, Handle) {
assert!(shards > 0);
let time_source = TimeSource::new(clock); let time_source = TimeSource::new(clock);
let wheels: Vec<_> = (0..shards)
.map(|_| Mutex::new(wheel::Wheel::new()))
.collect();
let handle = Handle { let handle = Handle {
time_source, time_source,
inner: Inner { inner: Inner {
next_wake: AtomicOptionNonZeroU64::new(None), state: Mutex::new(InnerState {
wheels: RwLock::new(ShardedWheel(wheels.into_boxed_slice())), next_wake: None,
wheels_len: shards, wheel: wheel::Wheel::new(),
}),
is_shutdown: AtomicBool::new(false), is_shutdown: AtomicBool::new(false),
#[cfg(feature = "test-util")] #[cfg(feature = "test-util")]
did_wake: AtomicBool::new(false), did_wake: AtomicBool::new(false),
}, },
@@ -187,34 +164,24 @@ impl Driver {
// Advance time forward to the end of time. // Advance time forward to the end of time.
handle.process_at_time(0, u64::MAX); handle.process_at_time(u64::MAX);
self.park.shutdown(rt_handle); self.park.shutdown(rt_handle);
} }
fn park_internal(&mut self, rt_handle: &driver::Handle, limit: Option<Duration>) { fn park_internal(&mut self, rt_handle: &driver::Handle, limit: Option<Duration>) {
let handle = rt_handle.time(); let handle = rt_handle.time();
let mut lock = handle.inner.state.lock();
assert!(!handle.is_shutdown()); assert!(!handle.is_shutdown());
// Finds out the min expiration time to park. let next_wake = lock.wheel.next_expiration_time();
let expiration_time = { lock.next_wake =
let mut wheels_lock = rt_handle.time().inner.wheels.write(); next_wake.map(|t| NonZeroU64::new(t).unwrap_or_else(|| NonZeroU64::new(1).unwrap()));
let expiration_time = wheels_lock
.0
.iter_mut()
.filter_map(|wheel| wheel.get_mut().next_expiration_time())
.min();
rt_handle drop(lock);
.time()
.inner
.next_wake
.store(next_wake_time(expiration_time));
expiration_time match next_wake {
};
match expiration_time {
Some(when) => { Some(when) => {
let now = handle.time_source.now(rt_handle.clock()); let now = handle.time_source.now(rt_handle.clock());
// Note that we effectively round up to 1ms here - this avoids // Note that we effectively round up to 1ms here - this avoids
@@ -278,60 +245,30 @@ impl Driver {
} }
} }
// Helper function to turn expiration_time into next_wake_time.
// Since the `park_timeout` will round up to 1ms for avoiding very
// short-duration microsecond-resolution sleeps, we do the same here.
// The conversion is as follows
// None => None
// Some(0) => Some(1)
// Some(i) => Some(i)
fn next_wake_time(expiration_time: Option<u64>) -> Option<NonZeroU64> {
expiration_time.and_then(|v| {
if v == 0 {
NonZeroU64::new(1)
} else {
NonZeroU64::new(v)
}
})
}
impl Handle { impl Handle {
/// Runs timer related logic, and returns the next wakeup time /// Runs timer related logic, and returns the next wakeup time
pub(self) fn process(&self, clock: &Clock) { pub(self) fn process(&self, clock: &Clock) {
let now = self.time_source().now(clock); let now = self.time_source().now(clock);
// For fairness, randomly select one to start.
let shards = self.inner.get_shard_size(); self.process_at_time(now);
let start = crate::runtime::context::thread_rng_n(shards);
self.process_at_time(start, now);
} }
pub(self) fn process_at_time(&self, start: u32, now: u64) { pub(self) fn process_at_time(&self, mut now: u64) {
let shards = self.inner.get_shard_size();
let expiration_time = (start..shards + start)
.filter_map(|i| self.process_at_sharded_time(i, now))
.min();
self.inner.next_wake.store(next_wake_time(expiration_time));
}
// Returns the next wakeup time of this shard.
pub(self) fn process_at_sharded_time(&self, id: u32, mut now: u64) -> Option<u64> {
let mut waker_list = WakeList::new(); let mut waker_list = WakeList::new();
let mut wheels_lock = self.inner.wheels.read();
let mut lock = wheels_lock.lock_sharded_wheel(id);
if now < lock.elapsed() { let mut lock = self.inner.lock();
if now < lock.wheel.elapsed() {
// Time went backwards! This normally shouldn't happen as the Rust language // Time went backwards! This normally shouldn't happen as the Rust language
// guarantees that an Instant is monotonic, but can happen when running // guarantees that an Instant is monotonic, but can happen when running
// Linux in a VM on a Windows host due to std incorrectly trusting the // Linux in a VM on a Windows host due to std incorrectly trusting the
// hardware clock to be monotonic. // hardware clock to be monotonic.
// //
// See <https://github.com/tokio-rs/tokio/issues/3619> for more information. // See <https://github.com/tokio-rs/tokio/issues/3619> for more information.
now = lock.elapsed(); now = lock.wheel.elapsed();
} }
while let Some(entry) = lock.poll(now) { while let Some(entry) = lock.wheel.poll(now) {
debug_assert!(unsafe { entry.is_pending() }); debug_assert!(unsafe { entry.is_pending() });
// SAFETY: We hold the driver lock, and just removed the entry from any linked lists. // SAFETY: We hold the driver lock, and just removed the entry from any linked lists.
@@ -341,21 +278,22 @@ impl Handle {
if !waker_list.can_push() { if !waker_list.can_push() {
// Wake a batch of wakers. To avoid deadlock, we must do this with the lock temporarily dropped. // Wake a batch of wakers. To avoid deadlock, we must do this with the lock temporarily dropped.
drop(lock); drop(lock);
drop(wheels_lock);
waker_list.wake_all(); waker_list.wake_all();
wheels_lock = self.inner.wheels.read(); lock = self.inner.lock();
lock = wheels_lock.lock_sharded_wheel(id);
} }
} }
} }
let next_wake_up = lock.poll_at();
lock.next_wake = lock
.wheel
.poll_at()
.map(|t| NonZeroU64::new(t).unwrap_or_else(|| NonZeroU64::new(1).unwrap()));
drop(lock); drop(lock);
drop(wheels_lock);
waker_list.wake_all(); waker_list.wake_all();
next_wake_up
} }
/// Removes a registered timer from the driver. /// Removes a registered timer from the driver.
@@ -370,11 +308,10 @@ impl Handle {
/// `add_entry` must not be called concurrently. /// `add_entry` must not be called concurrently.
pub(self) unsafe fn clear_entry(&self, entry: NonNull<TimerShared>) { pub(self) unsafe fn clear_entry(&self, entry: NonNull<TimerShared>) {
unsafe { unsafe {
let wheels_lock = self.inner.wheels.read(); let mut lock = self.inner.lock();
let mut lock = wheels_lock.lock_sharded_wheel(entry.as_ref().shard_id());
if entry.as_ref().might_be_registered() { if entry.as_ref().might_be_registered() {
lock.remove(entry); lock.wheel.remove(entry);
} }
entry.as_ref().handle().fire(Ok(())); entry.as_ref().handle().fire(Ok(()));
@@ -394,14 +331,12 @@ impl Handle {
entry: NonNull<TimerShared>, entry: NonNull<TimerShared>,
) { ) {
let waker = unsafe { let waker = unsafe {
let wheels_lock = self.inner.wheels.read(); let mut lock = self.inner.lock();
let mut lock = wheels_lock.lock_sharded_wheel(entry.as_ref().shard_id());
// We may have raced with a firing/deregistration, so check before // We may have raced with a firing/deregistration, so check before
// deregistering. // deregistering.
if unsafe { entry.as_ref().might_be_registered() } { if unsafe { entry.as_ref().might_be_registered() } {
lock.remove(entry); lock.wheel.remove(entry);
} }
// Now that we have exclusive control of this entry, mint a handle to reinsert it. // Now that we have exclusive control of this entry, mint a handle to reinsert it.
@@ -415,12 +350,10 @@ impl Handle {
// Note: We don't have to worry about racing with some other resetting // Note: We don't have to worry about racing with some other resetting
// thread, because add_entry and reregister require exclusive control of // thread, because add_entry and reregister require exclusive control of
// the timer entry. // the timer entry.
match unsafe { lock.insert(entry) } { match unsafe { lock.wheel.insert(entry) } {
Ok(when) => { Ok(when) => {
if self if lock
.inner
.next_wake .next_wake
.load()
.map(|next_wake| when < next_wake.get()) .map(|next_wake| when < next_wake.get())
.unwrap_or(true) .unwrap_or(true)
{ {
@@ -456,15 +389,15 @@ impl Handle {
// ===== impl Inner ===== // ===== impl Inner =====
impl Inner { impl Inner {
/// Locks the driver's inner structure
pub(super) fn lock(&self) -> crate::loom::sync::MutexGuard<'_, InnerState> {
self.state.lock()
}
// Check whether the driver has been shutdown // Check whether the driver has been shutdown
pub(super) fn is_shutdown(&self) -> bool { pub(super) fn is_shutdown(&self) -> bool {
self.is_shutdown.load(Ordering::SeqCst) self.is_shutdown.load(Ordering::SeqCst)
} }
// Gets the number of shards.
fn get_shard_size(&self) -> u32 {
self.wheels_len
}
} }
impl fmt::Debug for Inner { impl fmt::Debug for Inner {
@@ -473,19 +406,5 @@ impl fmt::Debug for Inner {
} }
} }
// ===== impl ShardedWheel =====
impl ShardedWheel {
/// Locks the driver's sharded wheel structure.
pub(super) fn lock_sharded_wheel(
&self,
shard_id: u32,
) -> crate::loom::sync::MutexGuard<'_, Wheel> {
let index = shard_id % (self.0.len() as u32);
// Safety: This modulo operation ensures that the index is not out of bounds.
unsafe { self.0.get_unchecked(index as usize) }.lock()
}
}
#[cfg(test)] #[cfg(test)]
mod tests; mod tests;
+7 -9
View File
@@ -65,7 +65,7 @@ fn single_timer() {
// This may or may not return Some (depending on how it races with the // This may or may not return Some (depending on how it races with the
// thread). If it does return None, however, the timer should complete // thread). If it does return None, however, the timer should complete
// synchronously. // synchronously.
time.process_at_time(0, time.time_source().now(clock) + 2_000_000_000); time.process_at_time(time.time_source().now(clock) + 2_000_000_000);
jh.join().unwrap(); jh.join().unwrap();
}) })
@@ -99,7 +99,7 @@ fn drop_timer() {
let clock = handle.inner.driver().clock(); let clock = handle.inner.driver().clock();
// advance 2s in the future. // advance 2s in the future.
time.process_at_time(0, time.time_source().now(clock) + 2_000_000_000); time.process_at_time(time.time_source().now(clock) + 2_000_000_000);
jh.join().unwrap(); jh.join().unwrap();
}) })
@@ -132,7 +132,7 @@ fn change_waker() {
let clock = handle.inner.driver().clock(); let clock = handle.inner.driver().clock();
// advance 2s // advance 2s
time.process_at_time(0, time.time_source().now(clock) + 2_000_000_000); time.process_at_time(time.time_source().now(clock) + 2_000_000_000);
jh.join().unwrap(); jh.join().unwrap();
}) })
@@ -172,7 +172,6 @@ fn reset_future() {
// This may or may not return a wakeup time. // This may or may not return a wakeup time.
handle.process_at_time( handle.process_at_time(
0,
handle handle
.time_source() .time_source()
.instant_to_tick(start + Duration::from_millis(1500)), .instant_to_tick(start + Duration::from_millis(1500)),
@@ -181,7 +180,6 @@ fn reset_future() {
assert!(!finished_early.load(Ordering::Relaxed)); assert!(!finished_early.load(Ordering::Relaxed));
handle.process_at_time( handle.process_at_time(
0,
handle handle
.time_source() .time_source()
.instant_to_tick(start + Duration::from_millis(2500)), .instant_to_tick(start + Duration::from_millis(2500)),
@@ -224,7 +222,7 @@ fn poll_process_levels() {
} }
for t in 1..normal_or_miri(1024, 64) { for t in 1..normal_or_miri(1024, 64) {
handle.inner.driver().time().process_at_time(0, t as u64); handle.inner.driver().time().process_at_time(t as u64);
for (deadline, future) in entries.iter_mut().enumerate() { for (deadline, future) in entries.iter_mut().enumerate() {
let mut context = Context::from_waker(noop_waker_ref()); let mut context = Context::from_waker(noop_waker_ref());
@@ -253,10 +251,10 @@ fn poll_process_levels_targeted() {
let handle = handle.inner.driver().time(); let handle = handle.inner.driver().time();
handle.process_at_time(0, 62); handle.process_at_time(62);
assert!(e1.as_mut().poll_elapsed(&mut context).is_pending()); assert!(e1.as_mut().poll_elapsed(&mut context).is_pending());
handle.process_at_time(0, 192); handle.process_at_time(192);
handle.process_at_time(0, 192); handle.process_at_time(192);
} }
#[test] #[test]
+1 -1
View File
@@ -57,7 +57,7 @@ cfg_rt! {
pub(crate) mod sharded_list; pub(crate) mod sharded_list;
} }
#[cfg(any(feature = "rt", feature = "macros", feature = "time"))] #[cfg(any(feature = "rt", feature = "macros"))]
pub(crate) mod rand; pub(crate) mod rand;
cfg_rt! { cfg_rt! {
-1
View File
@@ -71,7 +71,6 @@ impl FastRand {
#[cfg(any( #[cfg(any(
feature = "macros", feature = "macros",
feature = "rt-multi-thread", feature = "rt-multi-thread",
feature = "time",
all(feature = "sync", feature = "rt") all(feature = "sync", feature = "rt")
))] ))]
pub(crate) fn fastrand_n(&mut self, n: u32) -> u32 { pub(crate) fn fastrand_n(&mut self, n: u32) -> u32 {