最近想用下jemalloc,可是有个疑问 stdlib.h中有malloc,jemalloc也有一个相同的malloc,这样不会出现函数冲突吗
by zwjzwj19891228 - Linux环境编程 - 2014-04-25 15:33:46 阅读(992) 回复(3)
FreeBSD 7.0 has started to employ jemalloc as its default memory allocator, which exhibits much better than either dlmalloc or phkmalloc for multithreaded programs running on multi-processor systems. Dlmalloc is the default memory allocator employed by glibc, which has been widely accepted by a vast number of Linux release. Prior to jemalloc, fomer FreeBSD used to integrate phkmalloc serving...