Possible memory leaks in pthread_mutex_xxx

I have a user-mode application that is single sourced with Linux/Solaris. It works great on Linux and Solaris but keeps growing its memory usage under FreeBSD.

It passes valgrind under Linux but valgrind under FreeBSD does not work properly so I used dmalloc to check it and found memory leaks.

I can demonstrate the leak in about ten lines of code.

My question is who do I send the code to?
 
I've seen valgrind detect memory leaks in system libraries that didn't actually exist. You might want to verify your results by checking pthread source...
 
Back
Top