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.
2 parents 1e80d93 + a2f948d commit 3ccb075Copy full SHA for 3ccb075
src/unix/mod.rs
@@ -562,6 +562,9 @@ extern {
562
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
563
link_name = "kill$UNIX2003")]
564
pub fn kill(pid: pid_t, sig: ::c_int) -> ::c_int;
565
+ #[cfg_attr(all(target_os = "macos", target_arch = "x86"),
566
+ link_name = "killpg$UNIX2003")]
567
+ pub fn killpg(pgrp: pid_t, sig: ::c_int) -> ::c_int;
568
569
pub fn mlock(addr: *const ::c_void, len: ::size_t) -> ::c_int;
570
pub fn munlock(addr: *const ::c_void, len: ::size_t) -> ::c_int;
0 commit comments