summaryrefslogtreecommitdiff
path: root/ext/opcache
Commit message (Collapse)AuthorAgeFilesLines
* Accorate handling of too big inodes of chroot directoriesDmitry Stogov2016-11-171-12/+8
|
* "opcache.validate_root" is useless on WindowsDmitry Stogov2016-11-162-0/+6
|
* Use full pathDmitry Stogov2016-11-161-1/+1
|
* Fixed ZTS buildDmitry Stogov2016-11-161-0/+12
|
* Fixed bug #69090 (check cached files permissions)Dmitry Stogov2016-11-165-0/+78
|
* Fixed bug #73402 (Opcache segfault when using class constant to call a method)Xinchen Hui2016-10-292-3/+32
|
* Fixes #72590: Opcache restart with kill_all_lockers does not workKeyur2016-09-051-2/+2
| | | | | | ACCEL_LOG_ERROR is special and causes a zend_bailout() and the code never gets to call kill() in the next line after the logging. Change the log level to WARNING.
* The "flock" structure has to be writable on AIX.Dmitry Stogov2016-05-101-0/+20
|
* opcache config.m4: Use = for comparisonLior Kaplan2016-04-081-1/+1
|
* Fixed bug #71843 (null ptr deref ZEND_RETURN_SPEC_CONST_HANDLER)Xinchen Hui2016-03-172-1/+25
|
* Fix use-after-free of ZCG(cwd) in Zend OptimizerYussuf Khalil2016-02-101-6/+5
|
* bump year which is missed in rev 49493a2Xinchen Hui2016-01-021-1/+1
|
* Happy new year (Update copyright to 2016)Lior Kaplan2016-01-0124-24/+24
|
* Fixed incorrect setting on 32-bit systemsDmitry Stogov2015-12-221-2/+2
|
* Improved fix for #71127Xinchen Hui2015-12-183-4/+5
|
* Fixed bug #71127 (Define in auto_prepend_file is overwrite)Xinchen Hui2015-12-172-1/+27
|
* Support uwsgi sapi in opcacheRasmus Lerdorf2015-12-141-0/+1
|
* backported 7c981192eb26fbb93be767cd6b2dc765d370bbab from 7.0Anatol Belski2015-12-111-4/+46
| | | | the way it doesn't hurt BC
* backport 262160e and 2d55e8c into 5.6Anatol Belski2015-10-201-2/+7
|
* Fixed bug #70632 (Third one of segfault in gc_remove_from_buffer)Xinchen Hui2015-10-031-0/+21
|
* Fixed bug #70631 (Another Segfault in gc_remove_from_buffer())Xinchen Hui2015-10-031-0/+20
|
* Fixed bug #70601 (Segfault in gc_remove_from_buffer())Xinchen Hui2015-10-032-1/+26
|
* fix win10 supportAnatol Belski2015-10-031-1/+1
| | | | | dwMajorVersion == 10 there, and generally this check is obsolete as we don't support dwMajorVersion < 6 since 5.5
* Fixed bug #70237 (Empty while and do-while segmentation fault with opcode on ↵Xinchen Hui2015-08-112-0/+24
| | | | CLI enabled).
* On Windows PHP may be restarted with different set of DSO extensions without ↵Dmitry Stogov2015-06-291-4/+12
| | | | | | SHM reset. This may make optimisation for entities from DSO extensions inconsistent.
* Merge branch 'PHP-5.5' into PHP-5.6Dmitry Stogov2015-05-072-7/+27
|\ | | | | | | | | | | | | | | * PHP-5.5: Fixed bug #69549 (Memory leak with opcache.optimization_level=0xFFFFFFFF) Conflicts: NEWS
| * Fixed bug #69549 (Memory leak with opcache.optimization_level=0xFFFFFFFF)Dmitry Stogov2015-05-072-7/+27
| |
* | Merge branch 'PHP-5.5' into PHP-5.6Xinchen Hui2015-05-051-1/+1
|\ \ | |/
| * Update versionXinchen Hui2015-05-051-1/+1
| |
* | Since 5.6 stat.cwd using emalloc (Thanks to Remi)Xinchen Hui2015-04-221-0/+22
| |
* | Merge branch 'PHP-5.5' into PHP-5.6Xinchen Hui2015-04-013-2/+22
|\ \ | |/
| * Fixed bug #69281 (opcache_is_script_cached no longer works)Danack2015-04-013-2/+22
| |
* | Merge branch 'PHP-5.5' into PHP-5.6Lior Kaplan2015-04-011-1/+1
|\ \ | |/ | | | | | | | | | | * PHP-5.5: Fixed bug #68739 (Missing break / control flow in curl) Fixed bug #68740 (NULL Pointer Dereference) Fixed bug #68677 (Use After Free in OPcache)
| * Fixed bug #68677 (Use After Free in OPcache)Xinchen Hui2015-04-011-1/+1
| | | | | | | | (cherry picked from commit 777c39f4042327eac4b63c7ee87dc1c7a09a3115)
* | Fixed Bug #69297 (function_exists strange behavior with OPCache on disabled ↵Xinchen Hui2015-03-251-1/+6
| | | | | | | | | | | | | | function) is_callable returns true for disable_functions, but function_exists return false for it.
* | Merge branch 'PHP-5.5' into PHP-5.6Dmitry Stogov2015-03-101-17/+0
|\ \ | |/ | | | | | | * PHP-5.5: We don't cache custom strems with callbacks anymore
| * We don't cache custom strems with callbacks anymoreDmitry Stogov2015-03-101-17/+0
| |
* | Fixed bug #69159 (Opcache causes problem when passing a variable variable to ↵Xinchen Hui2015-03-042-2/+22
| | | | | | | | a function)
* | Merge branch 'PHP-5.5' into PHP-5.6Xinchen Hui2015-03-031-2/+2
|\ \ | |/
| * Make killing a locker an ERROR eventnathan r. hruby2015-03-031-2/+2
| | | | | | | | | | | | | | | | | | At least in apache, killing a locker with SIGKILL from inside opcache prevents the child process from emitting a corresponding log event to the access or error logs, therefore requests are termed with no record. This makes is incredibly difficult to debug problems espically on systems with high counts of cache restarts. Since INFO level is far too noisy for production use, switch the killing to a higher level so we can see it easier.
* | Merge branch 'PHP-5.5' into PHP-5.6Xinchen Hui2015-02-272-0/+23
|\ \ | |/
| * Fixed bug #69125 (Array numeric string as key)Xinchen Hui2015-02-272-0/+23
| |
| * better nameXinchen Hui2015-02-251-3/+3
| |
* | Merge branch 'PHP-5.5' into PHP-5.6Xinchen Hui2015-02-252-7/+22
|\ \ | |/ | | | | | | Conflicts: ext/opcache/tests/bug69038.phpt
| * Improve fix for #69038Xinchen Hui2015-02-252-5/+20
| |
* | Merge branch 'PHP-5.5' into PHP-5.6Dmitry Stogov2015-02-201-1/+1
|\ \ | |/ | | | | | | * PHP-5.5: Fixed type mismatch
| * Fixed type mismatchDmitry Stogov2015-02-201-1/+1
| |
* | Replace var is introducedXinchen Hui2015-02-172-0/+46
| |
* | Merge branch 'PHP-5.5' into PHP-5.6Xinchen Hui2015-02-172-10/+75
|\ \ | |/
| * Fixed bug #69038 (switch(SOMECONSTANT) misbehaves)Xinchen Hui2015-02-172-10/+75
| |