mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-25 00:00:18 +02:00
- Use `Handle::default` over `Handle::current` for consistent semantics - Make all `windows::Event` constructors lazily invoke `global_init` so they can be safely constructed off-task - Don't assume the reactor is alive and event registration will be done when calling `global_init` Add windows regression tests. Unfortunately, Windows doesn't have a reliable way of programmatically sending CTRL_C or CTRL_BREAK events to a progress, so the tests can only exercise our internal machinery by invoking the handler that we register with the OS Fixes #999
1.3 KiB
1.3 KiB
0.2.9
Fixed
windows::Eventperforms internal registrations lazily, so now it can be constructed outside of a running task- remove usage of deprecated
Handle::currentin defaultwindows::Eventconstructors
0.2.8 (March 22, 2019)
Fixed
- remove usage of deprecated
Handle::current(#981).
0.2.7 - (November 21, 2018)
Changed
unix::Signalnow implementsSync- minimize allocations
Fixes
unix::Signalnow avoids extraneous wakeups generated as a result of dropping other instances
0.2.6 - (October 26, 2018)
Changed
- Use the
signal-hookcrate for managing signal registrations
0.2.5 - (September 29, 2018)
Fixes
- Fix a possible starvation when polling multiple
Signalinstances outside of a tokio reactor (e.g. by usingFuture::wait)
0.2.4 - (August 25, 2018)
Fixes
- Actually make
unix::bsdpublic
0.2.3 - (August 25, 2018)
Features
- Exposes
SIGINFOon BSD-based operating systems.
0.2.2 - (August 14, 2018)
Fixes
- Fix starvation of
Signals whenever aSignalinstance is dropped - Fix starvation of individual
Signals based on their creation order
0.2.1 - (May 27, 2018)
Fixes
- Bump minimum supported version of
mioto 0.6.14
0.2.0 - (May 7, 2018)
Features
- Uses
tokioinstead oftokio_core - Supports all 33 signals on FreeBSD