[GIT-PULLS] [php-src] PR #23391: fix: tambah fpm_trace_continue() pada backend trace mach
[email protected] (feri220899)
| Newsgroups | php.git-pulls |
|---|---|
| Message-ID | <[email protected]> |
Pull Request: https://github.com/php/php-src/pull/23391 Author: feri220899 ## Description This PR adds support for resuming a process (`SIGCONT`) that was previously stopped via `ptrace` in the macOS backend. The macOS backend already provides functionality for stopping a traced process. This change complements that behavior by adding the corresponding resume functionality, allowing a stopped process to continue execution when required. This makes the process-control behavior more complete and provides a proper counterpart to the existing stop operation on macOS. ## Changes * Added functionality to resume a previously stopped process using `SIGCONT`. * Integrated the resume operation into the macOS `ptrace` backend. * Complements the existing process-stop functionality.