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.
sigqueue
1 parent 9f4ac58 commit 50e3c82Copy full SHA for 50e3c82
src/unix/mod.rs
@@ -1672,6 +1672,17 @@ cfg_if! {
1672
}
1673
1674
1675
+cfg_if! {
1676
+ if #[cfg(not(any(
1677
+ target_os = "emscripten",
1678
+ target_os = "macos",
1679
+ )))] {
1680
+ extern "C" {
1681
+ pub fn sigqueue(pid: pid_t, sig: c_int, value: crate::sigval) -> c_int;
1682
+ }
1683
1684
+}
1685
+
1686
cfg_if! {
1687
if #[cfg(not(target_os = "android"))] {
1688
extern "C" {
0 commit comments