diff options
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> |