diff options
author | Stefan Fritsch <sf@apache.org> | 2010-06-08 21:45:52 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2010-06-08 21:45:52 +0200 |
commit | 82ba65de4d228f557b6f4e4c57d42950a91a555a (patch) | |
tree | b7a8344ee67d83d81936b2575dcf8bb3e7dfcab3 /include/ap_mpm.h | |
parent | Fix the test of ap_mpm_query's result: (diff) | |
download | apache2-82ba65de4d228f557b6f4e4c57d42950a91a555a.tar.xz apache2-82ba65de4d228f557b6f4e4c57d42950a91a555a.zip |
Improve the comments for AP_MPMQ_NOT_SUPPORTED/AP_MPMQ_STATIC/AP_MPMQ_DYNAMIC
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@952791 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mpm.h')
-rw-r--r-- | include/ap_mpm.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/ap_mpm.h b/include/ap_mpm.h index 69586ca111..ee2c3d273f 100644 --- a/include/ap_mpm.h +++ b/include/ap_mpm.h @@ -113,15 +113,15 @@ AP_DECLARE(apr_status_t) ap_os_create_privileged_process( apr_pool_t *p); /* Subtypes/Values for AP_MPMQ_IS_THREADED and AP_MPMQ_IS_FORKED */ -#define AP_MPMQ_NOT_SUPPORTED 0 /* This value specifies whether */ - /* an MPM is capable of */ +#define AP_MPMQ_NOT_SUPPORTED 0 /* This value specifies that an */ + /* MPM is not capable of */ /* threading or forking. */ -#define AP_MPMQ_STATIC 1 /* This value specifies whether */ - /* an MPM is using a static # */ - /* threads or daemons. */ -#define AP_MPMQ_DYNAMIC 2 /* This value specifies whether */ - /* an MPM is using a dynamic # */ - /* threads or daemons. */ +#define AP_MPMQ_STATIC 1 /* This value specifies that */ + /* an MPM is using a static */ + /* number of threads or daemons */ +#define AP_MPMQ_DYNAMIC 2 /* This value specifies that */ + /* an MPM is using a dynamic */ + /* number of threads or daemons */ /* Values returned for AP_MPMQ_MPM_STATE */ #define AP_MPMQ_STARTING 0 |