|
From: Igmar P. <mai...@jd...> - 2003-07-09 14:20:29
|
Hi, I've run into a problem that can be explained, but I can't determine if it can be solved. The multithreaded application has 2 thread that communicate with each other, one writing to a fd, one reading from a fd. Both fd's are the result of an openpty(), so simply using some variable to do won't work. The problem lies that Valgrind is waiting for one thread to finish the read, which never happens because there is no thread active writing. Is there any way around the above that makes the application valgrindable ?? I ATM just comment out the communication functions, which makes the other thread deallocate the pty(), so I can still see the rest of the application's memleaks. Clues and hint are more then welcome :) Regards, Igmar |