about summary refs log tree commit diff
path: root/library/std/src/sys/unix/mod.rs
diff options
context:
space:
mode:
authorLukas Markeffsky <@>2022-12-26 22:01:53 +0100
committerMark Rousskov <mark.simulacrum@gmail.com>2022-12-28 09:18:43 -0500
commitfdf6cc34b2564100c5d07b573ef246124ee45b47 (patch)
treec8dba4e6ad1885186c89c184d23a453a1c29341e /library/std/src/sys/unix/mod.rs
parent11191279b721b326d545005b96ad9eecc7a95827 (diff)
downloadrust-fdf6cc34b2564100c5d07b573ef246124ee45b47.tar.gz
rust-fdf6cc34b2564100c5d07b573ef246124ee45b47.zip
delete more `cfg(bootstrap)`
Diffstat (limited to 'library/std/src/sys/unix/mod.rs')
-rw-r--r--library/std/src/sys/unix/mod.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/library/std/src/sys/unix/mod.rs b/library/std/src/sys/unix/mod.rs
index 83a43b6ee26..233e4a26bdc 100644
--- a/library/std/src/sys/unix/mod.rs
+++ b/library/std/src/sys/unix/mod.rs
@@ -184,12 +184,7 @@ pub unsafe fn init(argc: isize, argv: *const *const u8, sigpipe: u8) {
                 sigpipe::SIG_DFL => (true, Some(libc::SIG_DFL)),
                 _ => unreachable!(),
             };
-            // The bootstrap compiler doesn't know about sigpipe::DEFAULT, and always passes in
-            // SIG_IGN. This causes some tests to fail because they expect SIGPIPE to be reset to
-            // default on process spawning (which doesn't happen if #[unix_sigpipe] is specified).
-            // Since we can't differentiate between the cases here, treat SIG_IGN as DEFAULT
-            // unconditionally.
-            if sigpipe_attr_specified && !(cfg!(bootstrap) && sigpipe == sigpipe::SIG_IGN) {
+            if sigpipe_attr_specified {
                 UNIX_SIGPIPE_ATTR_SPECIFIED.store(true, crate::sync::atomic::Ordering::Relaxed);
             }
             if let Some(handler) = handler {