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

Allow olly to attach to an external process #45

Closed
wants to merge 3 commits into from

Commits on Apr 19, 2024

  1. Allow olly to attach to an external process

    - The command line changes are nontrivial in that they cannot be
    expressed with usual `Cmdliner` combinators. Attaching is done with an
    `--attach` option that is incompatible with the normal `EXECUTABLE`
    arguments
    
    - `EXECUTABLE` is now a sequence of arguments, rather than a single
    space-separated one. This makes the above mutual exclusion slightly
    easier to represent, and is more in-line with existing tools (`perf`,
    `gdb --args`).
    
    - `Unix.kill pid 0` is used to check if the process is alive, (since
    `wait` can only be used for child processes), this is valid and
    intended usage according to the POSIX specification.
    eutro committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    ce6d9a1 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Update GitHub Actions

    tmcgilchrist committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    61f6782 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

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