-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
runtime: SIGPROF incompatibility with PHP SIGPROF-based timeout functionality #56260
Comments
If I understand https://github.com/php/php-src/blob/5a68d991ad20402ebfecba2a30b2dfdb197c8c8e/Zend/zend_execute_API.c#L1429 correctly, PHP is using For that specific issue, it seems like the best approach would be for PHP to allow for spurious signals. e.g., when setting up the timeout, use However, there are more issues. e.g., both Go and PHP are trying to use the single |
For better or for worse, there is only one That said, simply running a plain |
Fixed on the PHP side: php/php-src#10141 |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I'm working on a library that embeds the PHP interpreter in Go programs.
PHP is using
SIGPROF
for itsmax_execution_time
andmax_input_time
features.When PHP receives a
SIGPROF
signal, it stops the current script with a PHP error.The problem is that Go also sends
SIGPROF
signals for its own profiling features (running the test suite is enough to trigger these signals) and these signals are propagated to the threads started and managed by (Franken)PHP.It may be a Mac-specific issue, as I'm not able to reproduce the problem on Linux.
To reproduce the issue, you can follow these instructions but without setting the
-DNO_SIGPROF
flag when compiling PHP then run the test suite (go test -v
).Patching PHP to use
SIGALARM
instead ofSIGPROF
also fixes the issue, but doesn't look like a very good option: php/php-src#9738What did you expect to see?
No
SIGPROF
signal is delivered to the C signal handler or at least a way to detect that it comes from Go.What did you see instead?
SIGPROF
is handled by PHP, and the script stops with an error.The text was updated successfully, but these errors were encountered: