From: William A. Rowe Jr Date: Sun, 13 Oct 2002 18:22:55 +0000 (+0000) Subject: What once were macros no longer need line continuation X-Git-Tag: 2.0.44~302 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e9782db91308f5b94429e577be59d476d27cca10;p=apache What once were macros no longer need line continuation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97192 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index c7b164fbc8..b52598c25d 100644 --- a/server/core.c +++ b/server/core.c @@ -3047,31 +3047,31 @@ AP_INIT_ITERATE2("AddOutputFilterByType", add_ct_output_filters, * #defined them in mpm.h. */ #ifdef AP_MPM_WANT_SET_PIDFILE -AP_INIT_TAKE1("PidFile", ap_mpm_set_pidfile, NULL, RSRC_CONF, \ +AP_INIT_TAKE1("PidFile", ap_mpm_set_pidfile, NULL, RSRC_CONF, "A file for logging the server process ID"), #endif #ifdef AP_MPM_WANT_SET_SCOREBOARD -AP_INIT_TAKE1("ScoreBoardFile", ap_mpm_set_scoreboard, NULL, RSRC_CONF, \ +AP_INIT_TAKE1("ScoreBoardFile", ap_mpm_set_scoreboard, NULL, RSRC_CONF, "A file for Apache to maintain runtime process management information"), #endif #ifdef AP_MPM_WANT_SET_LOCKFILE -AP_INIT_TAKE1("LockFile", ap_mpm_set_lockfile, NULL, RSRC_CONF, \ +AP_INIT_TAKE1("LockFile", ap_mpm_set_lockfile, NULL, RSRC_CONF, "The lockfile used when Apache needs to lock the accept() call"), #endif #ifdef AP_MPM_WANT_SET_MAX_REQUESTS -AP_INIT_TAKE1("MaxRequestsPerChild", ap_mpm_set_max_requests, NULL, RSRC_CONF,\ +AP_INIT_TAKE1("MaxRequestsPerChild", ap_mpm_set_max_requests, NULL, RSRC_CONF, "Maximum number of requests a particular child serves before dying."), #endif #ifdef AP_MPM_WANT_SET_COREDUMPDIR -AP_INIT_TAKE1("CoreDumpDirectory", ap_mpm_set_coredumpdir, NULL, RSRC_CONF, \ +AP_INIT_TAKE1("CoreDumpDirectory", ap_mpm_set_coredumpdir, NULL, RSRC_CONF, "The location of the directory Apache changes to before dumping core"), #endif #ifdef AP_MPM_WANT_SET_ACCEPT_LOCK_MECH -AP_INIT_TAKE1("AcceptMutex", ap_mpm_set_accept_lock_mech, NULL, RSRC_CONF, \ +AP_INIT_TAKE1("AcceptMutex", ap_mpm_set_accept_lock_mech, NULL, RSRC_CONF, ap_valid_accept_mutex_string), #endif #ifdef AP_MPM_WANT_SET_MAX_MEM_FREE -AP_INIT_TAKE1("MaxMemFree", ap_mpm_set_max_mem_free, NULL, RSRC_CONF,\ +AP_INIT_TAKE1("MaxMemFree", ap_mpm_set_max_mem_free, NULL, RSRC_CONF, "Maximum number of 1k blocks a particular childs allocator may hold."), #endif { NULL }