diff options
| author | Simonas Kazlauskas <git@kazlauskas.me> | 2021-02-27 17:55:22 +0200 |
|---|---|---|
| committer | Simonas Kazlauskas <git@kazlauskas.me> | 2021-02-27 17:55:22 +0200 |
| commit | a757fae24596e936b819a8974054eca95d95a58e (patch) | |
| tree | 936787a05166556d6eaf2bbb809d4be3410f87c2 /library/std/src | |
| parent | 8e863eb59a10fb0900d7377524a0dc7bf44b9ae3 (diff) | |
| download | rust-a757fae24596e936b819a8974054eca95d95a58e.tar.gz rust-a757fae24596e936b819a8974054eca95d95a58e.zip | |
Remove the x86_64-rumprun-netbsd target
Closes #81514
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/sys/unix/stack_overflow.rs | 4 | ||||
| -rw-r--r-- | library/std/src/sys/unix/thread.rs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/library/std/src/sys/unix/stack_overflow.rs b/library/std/src/sys/unix/stack_overflow.rs index d8474205352..d7bba50c76a 100644 --- a/library/std/src/sys/unix/stack_overflow.rs +++ b/library/std/src/sys/unix/stack_overflow.rs @@ -34,7 +34,7 @@ impl Drop for Handler { target_os = "freebsd", target_os = "solaris", target_os = "illumos", - all(target_os = "netbsd", not(target_vendor = "rumprun")), + target_os = "netbsd", target_os = "openbsd" ))] mod imp { @@ -218,7 +218,7 @@ mod imp { target_os = "freebsd", target_os = "solaris", target_os = "illumos", - all(target_os = "netbsd", not(target_vendor = "rumprun")), + target_os = "netbsd", target_os = "openbsd", )))] mod imp { diff --git a/library/std/src/sys/unix/thread.rs b/library/std/src/sys/unix/thread.rs index cda17eb4bd2..40c96307514 100644 --- a/library/std/src/sys/unix/thread.rs +++ b/library/std/src/sys/unix/thread.rs @@ -202,7 +202,7 @@ impl Drop for Thread { not(target_os = "linux"), not(target_os = "freebsd"), not(target_os = "macos"), - not(all(target_os = "netbsd", not(target_vendor = "rumprun"))), + not(target_os = "netbsd"), not(target_os = "openbsd"), not(target_os = "solaris") ))] @@ -222,7 +222,7 @@ pub mod guard { target_os = "linux", target_os = "freebsd", target_os = "macos", - all(target_os = "netbsd", not(target_vendor = "rumprun")), + target_os = "netbsd", target_os = "openbsd", target_os = "solaris" ))] |
