Skip to content

Commit

Permalink
Deploying to gh-pages from @ 53436d6 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Girgias committed Mar 24, 2024
1 parent 0aa5536 commit 72317be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _sources/php7/extensions_design/php_lifecycle.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ If you need to register INI entries for your extension, ``MINIT()`` is the right
If you need to register read-only :doc:`zend_strings <../internal_types/strings>` for further usage, it is time to do so
here (with persistent alloc).

If you need to allocate objects that well be written to while serving a request, then you'll need to duplicate their
If you need to allocate objects that will be written to while serving a request, then you'll need to duplicate their
memory allocation to a thread-specific pool for the request. Remember that you can only write safely to global space
while into ``MINIT()``.

Expand Down
2 changes: 1 addition & 1 deletion php7/extensions_design/php_lifecycle.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ <h3>Module initialization: MINIT()<a class="headerlink" href="#module-initializa
<p>If you need to register INI entries for your extension, <code class="docutils literal notranslate"><span class="pre">MINIT()</span></code> is the right step to do that.</p>
<p>If you need to register read-only <a class="reference internal" href="../internal_types/strings.html"><span class="doc">zend_strings</span></a> for further usage, it is time to do so
here (with persistent alloc).</p>
<p>If you need to allocate objects that well be written to while serving a request, then you’ll need to duplicate their
<p>If you need to allocate objects that will be written to while serving a request, then you’ll need to duplicate their
memory allocation to a thread-specific pool for the request. Remember that you can only write safely to global space
while into <code class="docutils literal notranslate"><span class="pre">MINIT()</span></code>.</p>
<div class="admonition note">
Expand Down

0 comments on commit 72317be

Please sign in to comment.