malloc implementation

Hi rainman. It seems that since FreeBSD 7.0 malloc (old implementation called phkmalloc()) was replaced by jemalloc (jemalloc(3) manual page). More interesting information you can find by reading jemalloc.pdf file. This paper presents a new malloc() implementation, informally just called jemalloc. One more thing; since 6.4 Release, FreeBSD kernel malloc(9) supports buffer corruption protection (RedZone).
 
Back
Top