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

Use anonymous pipes for stdout/stderr redirection. #2472

Open
wants to merge 5 commits into
base: devel
Choose a base branch
from

Commits on Jul 3, 2022

  1. Use anonymous pipes for stdout/stderr redirection.

    Closes catchorg#2444.
    
    Avoid the overhead of creating and deleting temporary files.
    Anonymous pipes have a limited buffer and require an active reader to
    ensure the writer does not become blocked. Use a separate thread to
    ensure the buffer does not get stuck full.
    davidmatson committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    ac345f8 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2022

  1. Configuration menu
    Copy the full SHA
    713e31c View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. Incorporate PR feedback.

    Keep previous implementation when threads are not available.
    davidmatson committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    10459a7 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2022

  1. Configuration menu
    Copy the full SHA
    a560a9f View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2022

  1. Configuration menu
    Copy the full SHA
    3b474ce View commit details
    Browse the repository at this point in the history