summaryrefslogtreecommitdiffstats
path: root/server/mpm
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2011-05-16 04:01:08 +0200
committerJeff Trawick <trawick@apache.org>2011-05-16 04:01:08 +0200
commit0598d43a1bb0282f2f7fbc8bc8f261fcc83b7895 (patch)
tree54d1dc0d9ce14059012ed371114ef66bcf51ba6d /server/mpm
parentmod_cache: When content is served stale, and there is no means to (diff)
downloadapache2-0598d43a1bb0282f2f7fbc8bc8f261fcc83b7895.tar.xz
apache2-0598d43a1bb0282f2f7fbc8bc8f261fcc83b7895.zip
fix some typos in comments
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1103593 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm')
-rw-r--r--server/mpm/winnt/child.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c
index 3ef137c196..db00d7a7db 100644
--- a/server/mpm/winnt/child.c
+++ b/server/mpm/winnt/child.c
@@ -48,7 +48,7 @@
#endif
/*
- * The Windoes MPM uses a queue of completion contexts that it passes
+ * The Windows MPM uses a queue of completion contexts that it passes
* between the accept threads and the worker threads. Declare the
* functions to access the queue and the structures passed on the
* queue in the header file to enable modules to access them
@@ -568,7 +568,7 @@ reinit: /* target of data or connect upon too many AcceptEx failures */
if (context->accept_socket != INVALID_SOCKET)
closesocket(context->accept_socket);
- /* This could be a persistant event per-listener rather than
+ /* This could be a persistent event per-listener rather than
* per-accept. However, the event needs to be removed from
* the target socket if not removed from the listen socket
* prior to accept(), or the event select is inherited.
@@ -1096,7 +1096,7 @@ void child_main(apr_pool_t *pconf)
apr_socket_close(lr->sd);
}
- /* Shutdown listener threads and pending AcceptEx socksts
+ /* Shutdown listener threads and pending AcceptEx sockets
* but allow the worker threads to continue consuming from
* the queue of accepted connections.
*/
@@ -1142,7 +1142,7 @@ void child_main(apr_pool_t *pconf)
}
apr_thread_mutex_unlock(qlock);
- /* Give busy threads a chance to service their connections,
+ /* Give busy threads a chance to service their connections
* (no more than the global server timeout period which
* we track in msec remaining).
*/