History log of /php-src/Zend/zend_max_execution_timer.c (Results 1 – 15 of 15)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# c9ea4d76 20-Aug-2024 Christoph M. Becker

Revert "Merge branch 'PHP-8.3'"

This reverts commit a2313cea5a7bc2770363d5b3409242241b33833a, reversing
changes made to 588029a989401e0f32445174e8bf6242205ed2a7.


# 89daa835 16-Aug-2024 Go Kudo

zend_max_execution_timer: fix gcc compatibility (#15447)


# b75775ea 20-Aug-2024 Christoph M. Becker

Revert "Merge branch 'PHP-8.3'"

This reverts commit b363a606a4ae8a7ca86f9338b5bffe4376716ed9, reversing
changes made to 3ed5eee5d3ae03c992fc66c502b73eba9c392edf.


# b363a606 20-Aug-2024 Christoph M. Becker

Merge branch 'PHP-8.3'

* PHP-8.3:


# 05d92db5 16-Aug-2024 Go Kudo

Merge branch 'PHP-8.3'


# 836e6fa9 16-Aug-2024 Go Kudo

zend_max_execution_timer: fix gcc compatibility (#15447)

# 9168b18c 16-Aug-2024 Go Kudo

Merge branch 'PHP-8.3'


# 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 ...

# af5db45d 16-Apr-2024 Arnaud Le Blanc

Merge branch 'PHP-8.3'

* PHP-8.3:
[ci skip] NEWS
[ci skip] NEWS
fix: zend-max-execution-timers with negative or high timeout value (#13942)
Use return value of getpwu

Merge branch 'PHP-8.3'

* PHP-8.3:
[ci skip] NEWS
[ci skip] NEWS
fix: zend-max-execution-timers with negative or high timeout value (#13942)
Use return value of getpwuid_r(), not errno (#13969)

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 ...

# ef61ed10 21-Feb-2024 Appla

Remove redundant getpid function call (#13454)

# f84d0468 16-Feb-2024 Kévin Dunglas

add support for Zend Max Exeuction Timers on FreeBSD (#13393)

# 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)