|
From: Tom H. <to...@co...> - 2005-08-17 15:37:03
|
In message <loo...@po...>
Mehmet Tek <mt...@ad...> wrote:
> I'm using Suse 9.0 with kernel 2.4.21 built for x86_64 (AMD x86_64).
> Valgrind reports possible memory leak:
>
> ==1878== LEAK SUMMARY:
> ==1878== definitely lost: 0 bytes in 0 blocks.
> ==1878== possibly lost: 11928 bytes in 14 blocks.
> ==1878== still reachable: 66032 bytes in 3 blocks.
> ==1878== suppressed: 0 bytes in 0 blocks.
>
> The detailed leak message claims that the leak happened within "pthread_create"
> and "pthread_join" functions of the pthread library. Can anyone tell me how
> seriously should I take this leak message?
>
> The code snippet and detailed leak message is below...
None of the messages you posted is a leak message. They are all
warnings about uninitialised system call arguments. You need to
use --leak-check=yes if you want to get leak details.
Tom
--
Tom Hughes (to...@co...)
http://www.compton.nu/
|