1
Fork 0

Properly abort when thread result panics on drop.

This commit is contained in:
Mara Bos 2022-03-05 18:07:20 +01:00
parent 5226395d6f
commit 7a481ff8a4
2 changed files with 26 additions and 24 deletions

View file

@ -363,6 +363,11 @@ extern crate std as realstd;
#[macro_use]
mod macros;
// The runtime entry point and a few unstable public functions used by the
// compiler
#[macro_use]
pub mod rt;
// The Rust prelude
pub mod prelude;
@ -547,11 +552,6 @@ pub mod arch {
#[stable(feature = "simd_x86", since = "1.27.0")]
pub use std_detect::is_x86_feature_detected;
// The runtime entry point and a few unstable public functions used by the
// compiler
#[macro_use]
pub mod rt;
// Platform-abstraction modules
mod sys;
mod sys_common;