Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for cloudabi #263

Merged
merged 1 commit into from Nov 24, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions core/Cargo.toml
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
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
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