We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f613e commit 788284cCopy full SHA for 788284c
src/sys/signal.rs
@@ -90,6 +90,7 @@ libc_enum!{
90
SIGWINCH,
91
/// Input/output possible signal
92
#[cfg(not(target_os = "haiku"))]
93
+ #[cfg_attr(docsrs, doc(cfg(all())))]
94
SIGIO,
95
#[cfg(any(target_os = "android", target_os = "emscripten",
96
target_os = "fuchsia", target_os = "linux"))]
@@ -106,10 +107,9 @@ libc_enum!{
106
107
SIGEMT,
108
#[cfg(not(any(target_os = "android", target_os = "emscripten",
109
target_os = "fuchsia", target_os = "linux",
- target_os = "redox")))]
110
+ target_os = "redox", target_os = "haiku")))]
111
#[cfg_attr(docsrs, doc(cfg(all())))]
112
/// Information request
- #[cfg(not(target_os = "haiku"))]
113
SIGINFO,
114
}
115
impl TryFrom<i32>
0 commit comments