diff options
author | Miles Bader <miles@lsi.nec.co.jp> | 2002-07-19 04:26:41 +0000 |
---|---|---|
committer | Miles Bader <miles@lsi.nec.co.jp> | 2002-07-19 04:26:41 +0000 |
commit | 246192008bf450a7098af436a02dcfdfd88b7ea9 (patch) | |
tree | 7c54d2926a118cbfac9aa9d09830733f0eb69e8f /libc/stdlib/malloc/heap_append_free.c | |
parent | 35d29fcb08fadaf006561a058746b0fce76a6a74 (diff) |
Rename mutex stuff to use heap-specific names.
Doc fix.
Diffstat (limited to 'libc/stdlib/malloc/heap_append_free.c')
-rw-r--r-- | libc/stdlib/malloc/heap_append_free.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/stdlib/malloc/heap_append_free.c b/libc/stdlib/malloc/heap_append_free.c index 42f0cf5bb..d67f46495 100644 --- a/libc/stdlib/malloc/heap_append_free.c +++ b/libc/stdlib/malloc/heap_append_free.c @@ -1,5 +1,5 @@ /* - * libc/stdlib/malloc-zarg/heap_append_free.c -- append to heap free area + * libc/stdlib/malloc/heap_append_free.c -- append memory to a heap free area * * Copyright (C) 2002 NEC Corporation * Copyright (C) 2002 Miles Bader <miles@gnu.org> @@ -25,7 +25,7 @@ __heap_append_free (struct heap *heap, void *mem, size_t size) int success = 0; struct heap_free_area *fa; - mutex_lock (heap->lock); + __heap_lock (heap); HEAP_DEBUG (heap, "before __heap_append_free"); @@ -65,7 +65,7 @@ __heap_append_free (struct heap *heap, void *mem, size_t size) HEAP_DEBUG (heap, "after __heap_append_free"); - mutex_unlock (heap->lock); + __heap_unlock (heap); return success; } |