aboutsummaryrefslogtreecommitdiff
path: root/malloc
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2012-08-10 09:39:38 -0600
committerJeff Law <law@redhat.com>2012-08-10 09:39:58 -0600
commit77480c6ba52e49a70f37c6f49d59f2f72501aca0 (patch)
tree8b76477def5ea1bf970edf11668428ee299fb985 /malloc
parentbf51f568f19bc063e62904d18b77d7e449a6a44f (diff)
downloadglibc-77480c6ba52e49a70f37c6f49d59f2f72501aca0.tar
glibc-77480c6ba52e49a70f37c6f49d59f2f72501aca0.tar.gz
glibc-77480c6ba52e49a70f37c6f49d59f2f72501aca0.tar.bz2
glibc-77480c6ba52e49a70f37c6f49d59f2f72501aca0.zip
Fix whitespace problems detected by commit hooks.
Diffstat (limited to 'malloc')
-rw-r--r--malloc/arena.c2
-rw-r--r--malloc/malloc.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/malloc/arena.c b/malloc/arena.c
index 7270bbe926..06bdd77d23 100644
--- a/malloc/arena.c
+++ b/malloc/arena.c
@@ -778,7 +778,7 @@ get_free_list (void)
return result;
}
-/* Lock and return an arena that can be reused for memory allocation.
+/* Lock and return an arena that can be reused for memory allocation.
Avoid AVOID_ARENA as we have already failed to allocate memory in
it and it is currently locked. */
static mstate
diff --git a/malloc/malloc.c b/malloc/malloc.c
index 1e4f929b98..373e063fc3 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -2865,8 +2865,8 @@ __libc_malloc(size_t bytes)
victim = _int_malloc(ar_ptr, bytes);
(void)mutex_unlock(&ar_ptr->mutex);
} else {
- /* ... or sbrk() has failed and there is still a chance to mmap()
- Grab ar_ptr->next prior to releasing its lock. */
+ /* ... or sbrk() has failed and there is still a chance to mmap()
+ Grab ar_ptr->next prior to releasing its lock. */
mstate prev = ar_ptr->next ? ar_ptr : 0;
(void)mutex_unlock(&ar_ptr->mutex);
ar_ptr = arena_get2(prev, bytes, ar_ptr);
@@ -3046,7 +3046,7 @@ __libc_memalign(size_t alignment, size_t bytes)
(void)mutex_unlock(&ar_ptr->mutex);
} else {
/* ... or sbrk() has failed and there is still a chance to mmap()
- Grab ar_ptr->next prior to releasing its lock. */
+ Grab ar_ptr->next prior to releasing its lock. */
mstate prev = ar_ptr->next ? ar_ptr : 0;
(void)mutex_unlock(&ar_ptr->mutex);
ar_ptr = arena_get2(prev, bytes, ar_ptr);
@@ -3096,7 +3096,7 @@ __libc_valloc(size_t bytes)
(void)mutex_unlock(&ar_ptr->mutex);
} else {
/* ... or sbrk() has failed and there is still a chance to mmap()
- Grab ar_ptr->next prior to releasing its lock. */
+ Grab ar_ptr->next prior to releasing its lock. */
mstate prev = ar_ptr->next ? ar_ptr : 0;
(void)mutex_unlock(&ar_ptr->mutex);
ar_ptr = arena_get2(prev, bytes, ar_ptr);
@@ -3144,7 +3144,7 @@ __libc_pvalloc(size_t bytes)
(void)mutex_unlock(&ar_ptr->mutex);
} else {
/* ... or sbrk() has failed and there is still a chance to mmap()
- Grab ar_ptr->next prior to releasing its lock. */
+ Grab ar_ptr->next prior to releasing its lock. */
mstate prev = ar_ptr->next ? ar_ptr : 0;
(void)mutex_unlock(&ar_ptr->mutex);
ar_ptr = arena_get2(prev, bytes + 2*pagesz + MINSIZE, ar_ptr);
@@ -3232,7 +3232,7 @@ __libc_calloc(size_t n, size_t elem_size)
(void)mutex_unlock(&main_arena.mutex);
} else {
/* ... or sbrk() has failed and there is still a chance to mmap()
- Grab av->next prior to releasing its lock. */
+ Grab av->next prior to releasing its lock. */
mstate prev = av->next ? av : 0;
(void)mutex_unlock(&av->mutex);
av = arena_get2(prev, sz, av);