摘要:
只在Linux下查看了malloc的使用情况:GCC版本4.6.1libc-dev 3.0.0-14.23//============================================================libc中有非线程安全/线程安全两个版本malloc函数下面的链接对此有描述,几年前的版本可能是这样的:通过-pthreads 选项可以明确指定在链接时是链接非线程安全的版本还是线程安全的版本。http://stackoverflow.com/questions/987444/about-thread-safety-in-malloc-and-free//====== 阅读全文