You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ch...@apache.org on 2009/05/05 05:31:23 UTC

svn commit: r771539 - /httpd/httpd/trunk/modules/mem/mod_plainmem.c

Author: chrisd
Date: Tue May  5 03:31:22 2009
New Revision: 771539

URL: http://svn.apache.org/viewvc?rev=771539&view=rev
Log:
add creation type parameter per r771286
remove lock/unlock structure elements per r771262

Modified:
    httpd/httpd/trunk/modules/mem/mod_plainmem.c

Modified: httpd/httpd/trunk/modules/mem/mod_plainmem.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/mem/mod_plainmem.c?rev=771539&r1=771538&r2=771539&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/mem/mod_plainmem.c (original)
+++ httpd/httpd/trunk/modules/mem/mod_plainmem.c Tue May  5 03:31:22 2009
@@ -51,7 +51,7 @@
     return APR_SUCCESS;
 }
 
-static apr_status_t slotmem_create(ap_slotmem_t **new, const char *name, apr_size_t item_size, unsigned int item_num, apr_pool_t *pool)
+static apr_status_t slotmem_create(ap_slotmem_t **new, const char *name, apr_size_t item_size, unsigned int item_num, int type, apr_pool_t *pool)
 {
     ap_slotmem_t *res;
     ap_slotmem_t *next = globallistmem;
@@ -184,8 +184,6 @@
     &slotmem_create,
     &slotmem_attach,
     &slotmem_mem,
-    NULL,
-    NULL,
     &slotmem_get,
     &slotmem_put
 };