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 2009/05/21 19:35:41 UTC

svn commit: r777195 - in /httpd/httpd/trunk/modules/slotmem: mod_slotmem_plain.c mod_slotmem_shm.c

Author: jim
Date: Thu May 21 17:35:38 2009
New Revision: 777195

URL: http://svn.apache.org/viewvc?rev=777195&view=rev
Log:
Complete API :)

Modified:
    httpd/httpd/trunk/modules/slotmem/mod_slotmem_plain.c
    httpd/httpd/trunk/modules/slotmem/mod_slotmem_shm.c

Modified: httpd/httpd/trunk/modules/slotmem/mod_slotmem_plain.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/slotmem/mod_slotmem_plain.c?rev=777195&r1=777194&r2=777195&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/slotmem/mod_slotmem_plain.c (original)
+++ httpd/httpd/trunk/modules/slotmem/mod_slotmem_plain.c Thu May 21 17:35:38 2009
@@ -262,7 +262,9 @@
     &slotmem_get,
     &slotmem_put,
     &slotmem_num_slots,
-    &slotmem_slot_size
+    &slotmem_slot_size,
+    &slotmem_grab,
+    &slotmem_release
 };
 
 static int pre_config(apr_pool_t *p, apr_pool_t *plog,

Modified: httpd/httpd/trunk/modules/slotmem/mod_slotmem_shm.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/slotmem/mod_slotmem_shm.c?rev=777195&r1=777194&r2=777195&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/slotmem/mod_slotmem_shm.c (original)
+++ httpd/httpd/trunk/modules/slotmem/mod_slotmem_shm.c Thu May 21 17:35:38 2009
@@ -545,7 +545,9 @@
     &slotmem_get,
     &slotmem_put,
     &slotmem_num_slots,
-    &slotmem_slot_size
+    &slotmem_slot_size,
+    &slotmem_grab,
+    &slotmem_release
 };
 
 /* make the storage usuable from outside */