History log of /PHP-8.2/Zend/zend_max_execution_timer.c (Results 1 – 6 of 6)
Revision Date Author Comments
# 836e6fa9 16-Aug-2024 Go Kudo

zend_max_execution_timer: fix gcc compatibility (#15447)


# ec9cdcd2 16-Aug-2024 Go Kudo

Fix MSan false-positive in zend_max_execution_timer (#15408)

Explicitly mark memory regions as unpoisoned for zend_max_execution_timer on ZTS, as MemorySanitizer in clang >= 18 causes false

Fix MSan false-positive in zend_max_execution_timer (#15408)

Explicitly mark memory regions as unpoisoned for zend_max_execution_timer on ZTS, as MemorySanitizer in clang >= 18 causes false positives.

show more ...


# f6e8145b 16-Apr-2024 Kévin Dunglas

fix: zend-max-execution-timers with negative or high timeout value (#13942)

Align the behavior of zend-max-execution-timers with other timeout impls: Negative or very high timeout values are

fix: zend-max-execution-timers with negative or high timeout value (#13942)

Align the behavior of zend-max-execution-timers with other timeout impls: Negative or very high timeout values are equivalent to no timeout

show more ...


# 6342f735 05-Jan-2024 Rob Landers

Fix timer leak (#13027)

ts_resource() and php_request_startup() both eventually call zend_max_execution_timer_init(), which didn't have a guard to prevent recreating timers, thus resulting i

Fix timer leak (#13027)

ts_resource() and php_request_startup() both eventually call zend_max_execution_timer_init(), which didn't have a guard to prevent recreating timers, thus resulting in leaking timers. This adds a guard to prevent the leak.

show more ...


# 39f3374b 29-Oct-2023 Kévin Dunglas

fix: don't delete an unitialized timer (#12537)


# ad85e714 03-Mar-2023 Kévin Dunglas

fix: support for timeouts with ZTS on Linux (#10141)