]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/sl_malloc.c
ITS#2883 initialize rc before running callbacks
[openldap] / servers / slapd / sl_malloc.c
index 947e2967a17edaada83c0461cb1168ac840f177a..28ad962137ce78f13cc2d6117343eb8b15a726aa 100644 (file)
@@ -1,8 +1,17 @@
 /* sl_malloc.c - malloc routines using a per-thread slab */
 /* $OpenLDAP$ */
-/*
- * Copyright 2003 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 2003 The OpenLDAP Foundation.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.
+ *
+ * A copy of this license is available in the file LICENSE in the
+ * top-level directory of the distribution or, alternatively, at
+ * <http://www.OpenLDAP.org/license.html>.
  */
 
 #include "portable.h"
@@ -78,11 +87,7 @@ sl_mem_detach(
        void *memctx
 )
 {
-       struct slab_heap *sh = memctx;
-       int size = (char *) sh->h_end - (char *) sh->h_base;
-
-       sh->h_base = ch_realloc( sh->h_base, size );
-
+       /* separate from context */
        ldap_pvt_thread_pool_setkey( ctx, sl_mem_init, NULL, NULL );
 }
 
@@ -201,27 +206,6 @@ sl_free( void *ptr, void *ctx )
        }
 }
 
-void
-sl_release( void *ptr, void *ctx )
-{
-       struct slab_heap *sh = ctx;
-
-       if ( sh && ptr >= sh->h_base && ptr <= sh->h_end ) {
-               sh->h_last = ptr;
-       }
-}
-
-void *
-sl_mark( void *ctx )
-{
-       struct slab_heap *sh = ctx;
-       void *ret = NULL;
-
-       if (sh) ret = sh->h_last;
-
-       return ret;
-}
-
 void *
 sl_context( void *ptr )
 {