You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2012/10/04 15:57:17 UTC

svn commit: r1394079 - in /httpd/httpd/trunk/docs/manual/mod: mod_slotmem_plain.xml mod_slotmem_shm.xml

Author: jim
Date: Thu Oct  4 13:57:17 2012
New Revision: 1394079

URL: http://svn.apache.org/viewvc?rev=1394079&view=rev
Log:
update doccos

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_slotmem_plain.xml
    httpd/httpd/trunk/docs/manual/mod/mod_slotmem_shm.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_slotmem_plain.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_slotmem_plain.xml?rev=1394079&r1=1394078&r2=1394079&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_slotmem_plain.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_slotmem_plain.xml Thu Oct  4 13:57:17 2012
@@ -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>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_slotmem_shm.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_slotmem_shm.xml?rev=1394079&r1=1394078&r2=1394079&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_slotmem_shm.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_slotmem_shm.xml Thu Oct  4 13:57:17 2012
@@ -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>