Skip to content
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

Add a backend for waitable handles #68

Merged
merged 3 commits into from
Mar 30, 2024
Merged

Add a backend for waitable handles #68

merged 3 commits into from
Mar 30, 2024

Commits on Mar 23, 2024

  1. m: Move reaper-related code to another module

    Signed-off-by: John Nunley <dev@notgull.net>
    notgull committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    341eb0d View commit details
    Browse the repository at this point in the history
  2. feat: Add a waitable process backend for Linux

    This commit adds a new backend for the process reaper. Rather than
    waiting on a signal, it instead registers the process's pidfd into
    async-io and waits on that instead.
    
    I've coded this backend to also allow for other systems to be registered
    here as well.
    
    Signed-off-by: John Nunley <dev@notgull.net>
    notgull committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    5b9f81c View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2024

  1. feat: Allow fallback to signal backend

    As pidfd isn't available in older versions of Linux that Rust still
    supports, this is necessary for running on older Linux. In addition,
    signals tests are still kept in CI.
    
    Signed-off-by: John Nunley <dev@notgull.net>
    notgull committed Mar 30, 2024
    Configuration menu
    Copy the full SHA
    70aa7b1 View commit details
    Browse the repository at this point in the history