Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you recommend a good debugging malloc library for linux?

Can you recommend a good debugging malloc library for linux? I know there are a lot of options out there, I just need to know which libraries people are actually using to solve real-life problems.

Thanks!

EDIT: I know about Valgrind, but sometimes the performance is really too low.

like image 669
static_rtti Avatar asked Mar 05 '10 14:03

static_rtti


1 Answers

Valgrind. :-) It's not a malloc library, but, it's really good at finding memory management and memory usage bugs.

like image 175
Chris Jester-Young Avatar answered Nov 09 '22 23:11

Chris Jester-Young