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

posix_spawn: Add support for posix_spawn_file_actions_addchdir_np #304

Merged
merged 2 commits into from
Feb 13, 2024

Commits on Feb 8, 2024

  1. posix_spawn: Fix inconsistency in macro name

    Previously the `configure` script would check for
    `posix_spawn_file_actions_addchdir` yet then the implementation would
    look for `HAVE_posix_spawn_file_actions_addchdir_np`. Fix this.
    bgamari committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    024f59b View commit details
    Browse the repository at this point in the history
  2. posix_spawn: Add support for posix_spawn_file_actions_addchdir_np

    It appears that glibc still has not introduced support for
    `posix_spawn_file_actions_addchdir`, despite it being ratified by Austin
    Group. Add support for `posix_spawn_file_actions_addchdir_np` as a
    stop-gap solution since the removal of the `vfork` path has turned up
    some pathological cases in the `fork` path in user code.
    bgamari committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    e4b4638 View commit details
    Browse the repository at this point in the history