Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ libc = "0.2.71"
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.1.56"

[target.'cfg(target_os = "cloudabi")'.dependencies]
cloudabi = "0.1.0"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.8", features = ["winnt", "ntstatus", "minwindef",
"winerror", "winbase", "errhandlingapi", "handleapi"] }
Expand Down
4 changes: 0 additions & 4 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@
),
feature(stdsimd)
)]
#![cfg_attr(
all(feature = "nightly", target_os = "cloudabi",),
feature(thread_local)
)]

mod parking_lot;
mod spinwait;
Expand Down
305 changes: 0 additions & 305 deletions core/src/thread_parker/cloudabi.rs

This file was deleted.

3 changes: 0 additions & 3 deletions core/src/thread_parker/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@ cfg_if! {
} else if #[cfg(target_arch = "wasm32")] {
#[path = "wasm.rs"]
mod imp;
} else if #[cfg(all(feature = "nightly", target_os = "cloudabi"))] {
#[path = "cloudabi.rs"]
mod imp;
} else {
#[path = "generic.rs"]
mod imp;
Expand Down