]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/ch_malloc.c
(re)introduce o_connid such that STATS doesn't need c_mutex (which it
[openldap] / servers / slapd / ch_malloc.c
index 9ce0ed80ec8936c9ab3d80c701954616f59242c6..724b93581f2f448bb115f351c9af6f85a80778b3 100644 (file)
@@ -4,59 +4,88 @@
 
 #include <stdio.h>
 
+#include <ac/stdlib.h>
+
 #include <ac/string.h>
 #include <ac/socket.h>
 
 #include "slap.h"
 
-char *
+void *
 ch_malloc(
-    unsigned long      size
+    ber_len_t  size
 )
 {
-       char    *new;
+       void    *new;
 
-       if ( (new = (char *) malloc( size )) == NULL ) {
-               Debug( LDAP_DEBUG_ANY, "malloc of %d bytes failed\n", size, 0, 0 );
+       if ( (new = (void *) ber_memalloc( size )) == NULL ) {
+               Debug( LDAP_DEBUG_ANY, "ch_malloc of %lu bytes failed\n",
+                       (long) size, 0, 0 );
                exit( 1 );
        }
 
        return( new );
 }
 
-char *
+void *
 ch_realloc(
-    char               *block,
-    unsigned long      size
+    void               *block,
+    ber_len_t  size
 )
 {
-       char    *new;
+       void    *new;
 
        if ( block == NULL ) {
                return( ch_malloc( size ) );
        }
 
-       if ( (new = (char *) realloc( block, size )) == NULL ) {
-               Debug( LDAP_DEBUG_ANY, "realloc of %d bytes failed\n", size, 0, 0 );
+       if( size == 0 ) {
+               ch_free( block );
+       }
+
+       if ( (new = (void *) ber_memrealloc( block, size )) == NULL ) {
+               Debug( LDAP_DEBUG_ANY, "ch_realloc of %lu bytes failed\n",
+                       (long) size, 0, 0 );
                exit( 1 );
        }
 
        return( new );
 }
 
-char *
+void *
 ch_calloc(
-    unsigned long      nelem,
-    unsigned long      size
+    ber_len_t  nelem,
+    ber_len_t  size
+)
+{
+       void    *new;
+
+       if ( (new = (void *) ber_memcalloc( nelem, size )) == NULL ) {
+               Debug( LDAP_DEBUG_ANY, "ch_calloc of %lu elems of %lu bytes failed\n",
+                 (long) nelem, (long) size, 0 );
+               exit( 1 );
+       }
+
+       return( new );
+}
+
+char *
+ch_strdup(
+    const char *string
 )
 {
        char    *new;
 
-       if ( (new = (char *) calloc( nelem, size )) == NULL ) {
-               Debug( LDAP_DEBUG_ANY, "calloc of %d elems of %d bytes failed\n",
-                 nelem, size, 0 );
+       if ( (new = ber_strdup( string )) == NULL ) {
+               Debug( LDAP_DEBUG_ANY, "ch_strdup(%s) failed\n", string, 0, 0 );
                exit( 1 );
        }
 
        return( new );
 }
+
+void
+ch_free( void *ptr )
+{
+       ber_memfree( ptr );
+}