|
From: Nicholas N. <nj...@ca...> - 2004-08-06 13:10:18
|
On Mon, 2 Aug 2004, Lucas Brasilino wrote: > I'm developing an small autentication server (siri-server) > which I've started using valgrind. Until last friday, before I leave > office to weekend, everything was working fine: I've found some > memory leaks and some illegal memory reads and writes. > But, without changing a line of code, when I came back > froma fancy weekend, valgrind (or siri-server) > is eating up memory causing kernel's VM killing siri-server with "Out of > Memory". > How strange!! I'm using valgrind version 2.0.0. Valgrind has a small memory leak in its libpthread.so implementation. I think it might leak 200 bytes per call to pthread_key_create(), but I'm not certain of the details. Does your program call this function often? N |