diff options
author | Jim Jagielski <jim@apache.org> | 2012-10-04 15:57:17 +0200 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2012-10-04 15:57:17 +0200 |
commit | 46ccd26e339fdb19dd73615c7a5046d43e2a3205 (patch) | |
tree | 09b135f35a79c122713a247fbfe36009931cccde /docs | |
parent | * modules/arch/unix/mod_systemd.c (systemd_pre_mpm): Simplify code (diff) | |
download | apache2-46ccd26e339fdb19dd73615c7a5046d43e2a3205.tar.xz apache2-46ccd26e339fdb19dd73615c7a5046d43e2a3205.zip |
update doccos
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1394079 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/mod_slotmem_plain.xml | 4 | ||||
-rw-r--r-- | docs/manual/mod/mod_slotmem_shm.xml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/manual/mod/mod_slotmem_plain.xml b/docs/manual/mod/mod_slotmem_plain.xml index 61603f189f..6cd8fe5842 100644 --- a/docs/manual/mod/mod_slotmem_plain.xml +++ b/docs/manual/mod/mod_slotmem_plain.xml @@ -68,10 +68,10 @@ <dd>return the total data size, in bytes, of a slot in the segment</dd> <dt>apr_status_t grab(ap_slotmem_instance_t *s, unsigned int *item_id);</dt> - <dd>grab or allocate a slot and mark as in-use (does not do any data copying)</dd> + <dd>grab or allocate the first free slot and mark as in-use (does not do any data copying)</dd> <dt>apr_status_t fgrab(ap_slotmem_instance_t *s, unsigned int item_id);</dt> - <dd>forced grab or allocate a slot and mark as in-use (does not do any data copying)</dd> + <dd>forced grab or allocate the specified slot and mark as in-use (does not do any data copying)</dd> <dt>apr_status_t release(ap_slotmem_instance_t *s, unsigned int item_id);</dt> <dd>release or free a slot and mark as not in-use (does not do any data copying)</dd> diff --git a/docs/manual/mod/mod_slotmem_shm.xml b/docs/manual/mod/mod_slotmem_shm.xml index f27d156ba9..4c45aa2c65 100644 --- a/docs/manual/mod/mod_slotmem_shm.xml +++ b/docs/manual/mod/mod_slotmem_shm.xml @@ -81,10 +81,10 @@ <dd>return the total data size, in bytes, of a slot in the segment</dd> <dt>apr_status_t grab(ap_slotmem_instance_t *s, unsigned int *item_id);</dt> - <dd>grab or allocate a slot and mark as in-use (does not do any data copying)</dd> + <dd>grab or allocate the first free slot and mark as in-use (does not do any data copying)</dd> - <dt>apr_status_t grab(ap_slotmem_instance_t *s, unsigned int item_id);</dt> - <dd>forced grab or allocate a slot and mark as in-use (does not do any data copying)</dd> + <dt>apr_status_t fgrab(ap_slotmem_instance_t *s, unsigned int item_id);</dt> + <dd>forced grab or allocate the specified slot and mark as in-use (does not do any data copying)</dd> <dt>apr_status_t release(ap_slotmem_instance_t *s, unsigned int item_id);</dt> <dd>release or free a slot and mark as not in-use (does not do any data copying)</dd> |