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