OSDN Git Service

Finally fix the MALLOC=y and MALLOC_SIMPLE=y breakage from svn 23660. (I found it...
[uclinux-h8/uClibc.git] / libc / stdlib / malloc / realloc.c
index f12123a..a827199 100644 (file)
@@ -59,9 +59,9 @@ realloc (void *mem, size_t new_size)
     {
       size_t extra = new_size - size;
 
-      __heap_do_lock (&__malloc_heap_lock);
-      extra = __heap_alloc_at (__malloc_heap, base_mem + size, extra);
-      __heap_do_unlock (&__malloc_heap_lock);
+      __heap_lock (&__malloc_heap_lock);
+      extra = __heap_alloc_at (&__malloc_heap, base_mem + size, extra);
+      __heap_unlock (&__malloc_heap_lock);
 
       if (extra)
        /* Record the changed size.  */
@@ -82,9 +82,9 @@ realloc (void *mem, size_t new_size)
   else if (new_size + MALLOC_REALLOC_MIN_FREE_SIZE <= size)
     /* Shrink the block.  */
     {
-      __heap_do_lock (&__malloc_heap_lock);
-      __heap_free (__malloc_heap, base_mem + new_size, size - new_size);
-      __heap_do_unlock (&__malloc_heap_lock);
+      __heap_lock (&__malloc_heap_lock);
+      __heap_free (&__malloc_heap, base_mem + new_size, size - new_size);
+      __heap_unlock (&__malloc_heap_lock);
       MALLOC_SET_SIZE (base_mem, new_size);
     }