summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-04-08 19:22:35 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-04-08 19:22:35 +0200
commitd24dcfa4dba490512e3d417c71c0bb2c02e2881d (patch)
tree00f8d597c757b7dc164f1bdbb7599b6a41845a66 /documentation
parent23675c8987be342590b89177b9d29d4a853eacca (diff)
apache process uses child processes, not threads, fixed documentation
Diffstat (limited to 'documentation')
-rw-r--r--documentation/extension-callbacks.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/extension-callbacks.html b/documentation/extension-callbacks.html
index b8c2686..aa35a7e 100644
--- a/documentation/extension-callbacks.html
+++ b/documentation/extension-callbacks.html
@@ -133,7 +133,7 @@ extern "C" {
<h2 id="apache-prefork-module">Forked engines (like Apache)</h2>
<p>
If you run PHP on a pre-fork web server (like Apache), your extension is
- loaded and initialized <i>before</i> the various worker threads are
+ loaded and initialized <i>before</i> the various worker processes are
forked off. The consequence of this is that the get_module() function
and your optional onStartup() callback function are called by the parent
process, and all other callbacks and the actual page handling by the