internals:zend_mm
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
internals:zend_mm [2013/01/22 13:25] – [Zend MM] krakjoe | internals:zend_mm [2017/09/22 13:28] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 17: | Line 17: | ||
PHP is written entirely in C. In C, the programmer is responsible for the allocation and release of memory during runtime. | PHP is written entirely in C. In C, the programmer is responsible for the allocation and release of memory during runtime. | ||
- | PHP has very specific requirements for management of memory and many modes of execution; all sharing | + | PHP has very specific requirements for management of memory and many modes of execution; all sharing |
The memory manager in PHP, named Zend MM, facilitates these requirements in the same way, whatever the mode of execution, whatever the code. | The memory manager in PHP, named Zend MM, facilitates these requirements in the same way, whatever the mode of execution, whatever the code. | ||
Line 40: | Line 40: | ||
void | void | ||
- | They all share prototype and functionality with the standard C implementation, | + | They all share prototype and functionality with the standard C implementation, |
Zend provides the following (persistence) functions: | Zend provides the following (persistence) functions: | ||
Line 51: | Line 51: | ||
Persistent memory is not optimized, or tracked by the implementation, | Persistent memory is not optimized, or tracked by the implementation, | ||
- | The following diagrams and explanations provide insight into how and why Zend MM works the way it does. | + | The following diagrams and explanations provide insight into how and why Zend MM manages |
===== Struct zend_mm_heap ===== | ===== Struct zend_mm_heap ===== | ||
<code c> | <code c> |
internals/zend_mm.1358861153.txt.gz · Last modified: 2017/09/22 13:28 (external edit)