diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-05-07 09:54:35 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-05-07 09:54:46 +0200 |
commit | d9a2d76a43dd9343b6f95f9f3b0280f58225d4f6 (patch) | |
tree | 08214d8128e11439098a4371a1ea78ba426a9ddb | |
parent | 361d0b3426093927ef4e54a995090e7c32cd2df1 (diff) | |
download | php-git-d9a2d76a43dd9343b6f95f9f3b0280f58225d4f6.tar.gz |
Remove outdated info from README.ZEND_MM
[ci skip]
-rw-r--r-- | Zend/README.ZEND_MM | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Zend/README.ZEND_MM b/Zend/README.ZEND_MM index cfdcdaa4a1..017b937665 100644 --- a/Zend/README.ZEND_MM +++ b/Zend/README.ZEND_MM @@ -25,13 +25,3 @@ Since PHP 5.3.11 it is possible to prevent shared extensions from unloading so that valgrind can correctly track the memory leaks in shared extensions. For this there is the ZEND_DONT_UNLOAD_MODULES environment variable. If set, then DL_UNLOAD() is skipped during the shutdown of shared extensions. - - -Tweaking: ---------- - -The Zend MM can be tweaked using ZEND_MM_MEM_TYPE and ZEND_MM_SEG_SIZE environment -variables. Default values are "malloc" and "256K". Dependent on target system you -can also use "mmap_anon", "mmap_zero" and "win32" storage managers. - - $ ZEND_MM_MEM_TYPE=mmap_anon ZEND_MM_SEG_SIZE=1M sapi/cli/php ..etc. |