summaryrefslogtreecommitdiff
path: root/include/mpm_common.h
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2011-09-23 13:38:09 +0000
committerJim Jagielski <jim@apache.org>2011-09-23 13:38:09 +0000
commit103f776c25b7fdd51da4f98643b8dcdb09efdce6 (patch)
treea180a9a0f13da4a983913f50a3ad1a7e2f2a675a /include/mpm_common.h
parent69c1a5c854b89a80cf5ca08b7b38d9f0a88c2667 (diff)
downloadhttpd-103f776c25b7fdd51da4f98643b8dcdb09efdce6.tar.gz
Cleanup effort in prep for GA push:
Trim trailing whitespace... no func change git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174748 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/mpm_common.h')
-rw-r--r--include/mpm_common.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/mpm_common.h b/include/mpm_common.h
index 42bce83fbb..286b388e3e 100644
--- a/include/mpm_common.h
+++ b/include/mpm_common.h
@@ -55,14 +55,14 @@ extern "C" {
* by listen(2). Under some systems, it should be increased if you
* are experiencing a heavy TCP SYN flood attack.
*
- * It defaults to 511 instead of 512 because some systems store it
- * as an 8-bit datatype; 512 truncated to 8-bits is 0, while 511 is
+ * It defaults to 511 instead of 512 because some systems store it
+ * as an 8-bit datatype; 512 truncated to 8-bits is 0, while 511 is
* 255 when truncated.
*/
#ifndef DEFAULT_LISTENBACKLOG
#define DEFAULT_LISTENBACKLOG 511
#endif
-
+
/* Signal used to gracefully restart */
#define AP_SIG_GRACEFUL SIGUSR1
@@ -114,7 +114,7 @@ void ap_reclaim_child_processes(int terminate,
void ap_relieve_child_processes(ap_reclaim_callback_fn_t *mpm_callback);
/**
- * Tell ap_reclaim_child_processes() and ap_relieve_child_processes() about
+ * Tell ap_reclaim_child_processes() and ap_relieve_child_processes() about
* an MPM child process which has no entry in the scoreboard.
* @param pid The process id of an MPM child process which should be
* reclaimed when ap_reclaim_child_processes() is called.
@@ -151,13 +151,13 @@ apr_status_t ap_mpm_safe_kill(pid_t pid, int sig);
* Run the monitor hook (once every ten calls), determine if any child
* process has died and, if none died, sleep one second.
* @param status The return code if a process has died
- * @param exitcode The returned exit status of the child, if a child process
+ * @param exitcode The returned exit status of the child, if a child process
* dies, or the signal that caused the child to die.
* @param ret The process id of the process that died
* @param p The pool to allocate out of
* @param s The server_rec to pass
*/
-void ap_wait_or_timeout(apr_exit_why_e *status, int *exitcode, apr_proc_t *ret,
+void ap_wait_or_timeout(apr_exit_why_e *status, int *exitcode, apr_proc_t *ret,
apr_pool_t *p, server_rec *s);
/**
@@ -207,7 +207,7 @@ AP_DECLARE(gid_t) ap_gname2id(const char *name);
/**
* The initgroups() function initializes the group access list by reading the
* group database /etc/group and using all groups of which user is a member.
- * The additional group basegid is also added to the list.
+ * The additional group basegid is also added to the list.
* @param name The user name - must be non-NULL
* @param basegid The basegid to add
* @return returns 0 on success
@@ -362,7 +362,7 @@ AP_DECLARE_HOOK(const char *,mpm_get_name,(void))
* core's pre-config hook
*/
void mpm_common_pre_config(apr_pool_t *pconf);
-
+
#ifdef __cplusplus
}
#endif