index
:
uclibc-ng.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
libc
/
stdlib
/
malloc
/
realloc.c
Age
Commit message (
Expand
)
Author
2008-05-19
Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL block
Denis Vlasenko
2007-04-24
fix from Bernd Schmidt for realloc shrinkage bug
Mike Frysinger
2007-04-13
fix up malloc debug building
Mike Frysinger
2006-02-22
check for a 0 size first, then check for a NULL pointer
Mike Frysinger
2006-01-14
hidden_def/hidden_proto: convert all users (I hope) termios split, add some m...
Peter S. Mazinger
2005-12-01
Hide mostly used functions
Peter S. Mazinger
2003-10-16
Code formatting cleanup.
Miles Bader
2003-09-06
Fix errno values. Fix MALLOC_GLIBC_COMPAT handling in malloc/malloc.c,
Eric Andersen
2002-11-21
Improve malloc debugging support.
Miles Bader
2002-10-17
Fix malloc so it compiles and works when using pthreads
Eric Andersen
2002-10-15
Use __heap_[un]lock instead of __malloc_[un]lock.
Miles Bader
2002-09-09
(realloc): Record the correct size in the malloc header in the case
Miles Bader
2002-08-19
(realloc): Follow new arg conventions of MALLOC_SET_SIZE.
Miles Bader
2002-08-14
Handle zero NEW_SIZE case.
Miles Bader
2002-08-01
Use MALLOC_REALLOC_MIN_FREE_SIZE.
Miles Bader
2002-07-31
In the allocate-and-copy case, don't include the malloc header in our
Miles Bader
2002-07-31
Update debugging printfs.
Miles Bader
2002-07-31
Account for MALLOC_HEADER_SIZE when calculating new size.
Miles Bader
2002-07-30
Make sure NEW_SIZE is a multiple of HEAP_GRANULARITY.
Miles Bader
2002-07-30
Update the size of grown/shrunk allocations.
Miles Bader
2002-07-30
Implement shrinking.
Miles Bader
2002-07-25
Redo the locking, so that it may actually work. Now locking is done at
Miles Bader
2002-07-24
Misc small cleanups.
Miles Bader
2002-07-23
* Automatically try to unmap heap free-areas when they get very big.
Miles Bader
2002-07-19
Doc fix.
Miles Bader
2002-07-18
Miles Bader implemented a new mmap based malloc which is much
Eric Andersen