Skip to content

Commit

Permalink
Merge pull request #263 from messense/rm-cloudabi
Browse files Browse the repository at this point in the history
Drop support for cloudabi
  • Loading branch information
Amanieu committed Nov 24, 2020
2 parents 86969fd + 27cb032 commit 4719198
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 315 deletions.
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

0 comments on commit 4719198

Please sign in to comment.