We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 012127b commit cec957eCopy full SHA for cec957e
src/libstd/sys/vxworks/mod.rs
@@ -36,18 +36,10 @@ pub use crate::sys_common::os_str_bytes as os_str;
36
37
#[cfg(not(test))]
38
pub fn init() {
39
- // By default, some platforms will send a *signal* when an EPIPE error
40
- // would otherwise be delivered. This runtime doesn't install a SIGPIPE
41
- // handler, causing it to kill the program, which isn't exactly what we
42
- // want!
43
- //
44
- // Hence, we set SIGPIPE to ignore when the program starts up in order
45
- // to prevent this problem.
+ // ignore SIGPIPE
46
unsafe {
47
- reset_sigpipe();
+ assert!(signal(libc::SIGPIPE, libc::SIG_IGN) != libc::SIG_ERR);
48
}
49
-
50
- unsafe fn reset_sigpipe() {}
51
52
53
pub use libc::signal;
0 commit comments