From kde-bugs-dist Sun Oct 31 22:15:29 2004 From: Tom Hughes Date: Sun, 31 Oct 2004 22:15:29 +0000 To: kde-bugs-dist Subject: [Bug 91153] Possible new leak to suppress in glibc-2.?.supp Message-Id: <20041031221529.17923.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=109926093327802 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=91153 ------- Additional Comments From thh cyberscience com 2004-10-31 23:15 ------- It isn't really a case of anything being to blame - the real point here is that there isn't really a problem. Memory that is still in use when the program exits is not a problem as such which is why valgrind doesn't report reachable memory as a leak unless you ask for it with --show-reachable=yes. If you call pthread_exit rather than exit then the TSD destructors will be run and that memory will be freed. But if the program is exiting anyway then why do you care if the memory is explicitly freed or not?