5 releases (3 breaking)

0.4.0 Oct 25, 2024
0.3.0 Dec 5, 2021
0.2.0 Feb 15, 2021
0.1.1 Sep 24, 2019
0.1.0 Sep 23, 2019

#422 in Asynchronous

Download history 14/week @ 2024-07-29 16/week @ 2024-09-09 6/week @ 2024-09-23 103/week @ 2024-10-21 13/week @ 2024-10-28 5/week @ 2024-11-04

121 downloads per month
Used in testnet

MIT license

16KB
230 lines

mio-pidfd

A Linux pidfd wrapper for mio. This is useful for using mio to wait for multiple child processes to exit in a non-blocking event-driven way.

Heavily inspired by mio-timerfd

Example

use mio_pidfd::PidFd;
use mio::{Poll, Events, Token, Ready, PollOpt};
use std::process::{Command, Child};

let poll = Poll::new().unwrap();
let mut events = Events::with_capacity(1024);
let mut child = Command::new("/bin/sleep").arg("1").spawn().unwrap();
let pidfd = PidFd::new(&child).unwrap();

poll.register(&pidfd, Token(0), Ready::readable(), PollOpt::edge())
             .unwrap();

poll.poll(&mut events, None).unwrap();
assert!(child.try_wait().unwrap().unwrap().code().unwrap() == 0);

Requirements

This library relies on the pidfd_open() system call which was introduced in Linux kernel version 5.3. The pidfd_send_signal() system call (used by supplementary kill() functionality) was introduced in Linux kernel version 5.1

Dependencies

~0.3–7.5MB
~45K SLoC