From: Jim Jagielski Date: Thu, 4 Oct 2012 13:57:17 +0000 (+0000) Subject: update doccos X-Git-Tag: 2.5.0-alpha~6237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46ccd26e339fdb19dd73615c7a5046d43e2a3205;p=thirdparty%2Fapache%2Fhttpd.git update doccos git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1394079 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_slotmem_plain.xml b/docs/manual/mod/mod_slotmem_plain.xml index 61603f189f5..6cd8fe58427 100644 --- a/docs/manual/mod/mod_slotmem_plain.xml +++ b/docs/manual/mod/mod_slotmem_plain.xml @@ -68,10 +68,10 @@
return the total data size, in bytes, of a slot in the segment
apr_status_t grab(ap_slotmem_instance_t *s, unsigned int *item_id);
-
grab or allocate a slot and mark as in-use (does not do any data copying)
+
grab or allocate the first free slot and mark as in-use (does not do any data copying)
apr_status_t fgrab(ap_slotmem_instance_t *s, unsigned int item_id);
-
forced grab or allocate a slot and mark as in-use (does not do any data copying)
+
forced grab or allocate the specified slot and mark as in-use (does not do any data copying)
apr_status_t release(ap_slotmem_instance_t *s, unsigned int item_id);
release or free a slot and mark as not in-use (does not do any data copying)
diff --git a/docs/manual/mod/mod_slotmem_shm.xml b/docs/manual/mod/mod_slotmem_shm.xml index f27d156ba98..4c45aa2c655 100644 --- a/docs/manual/mod/mod_slotmem_shm.xml +++ b/docs/manual/mod/mod_slotmem_shm.xml @@ -81,10 +81,10 @@
return the total data size, in bytes, of a slot in the segment
apr_status_t grab(ap_slotmem_instance_t *s, unsigned int *item_id);
-
grab or allocate a slot and mark as in-use (does not do any data copying)
+
grab or allocate the first free slot and mark as in-use (does not do any data copying)
-
apr_status_t grab(ap_slotmem_instance_t *s, unsigned int item_id);
-
forced grab or allocate a slot and mark as in-use (does not do any data copying)
+
apr_status_t fgrab(ap_slotmem_instance_t *s, unsigned int item_id);
+
forced grab or allocate the specified slot and mark as in-use (does not do any data copying)
apr_status_t release(ap_slotmem_instance_t *s, unsigned int item_id);
release or free a slot and mark as not in-use (does not do any data copying)