-
Notifications
You must be signed in to change notification settings - Fork 682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing killpg #644
Comments
@mmstick Would you be willing to file a PR adding this to |
Sure. Where can I start? |
The first step is actually to get Once that's done, you can file a PR here adding |
@Susurrus killpg has two signatures.
How to handle this? Or should the pid_t signature alone be sufficient? Do I understand correctly that the below change in rust libc alone is sufficient to carry this forward?.
|
AFAIK |
killpg in rust-lang/libc#879 is now merged. |
@mmstick @SanchayanMaity With |
I too need |
1034: Add killpg r=asomers a=DanSnow It's seem that #644 is inactively about 1 year. But I really want this API that can land in nix. Actually I not really understand how to check the availability of an API for other platform except Linux. But I saw that this API in `libc` is wrapping inside a `#[cfg(unix)]`. So I don't need to add any `#[cfg]` on this API, am I right? Resolved #644 Co-authored-by: DanSnow <[email protected]>
Needed by Ion to send signals to all members of a process group.
The text was updated successfully, but these errors were encountered: