My application is causing 10m of memory leak in one scenario. But when i debugged with valgrind, the following is the leak summary.
812 ==18074== LEAK SUMMARY:
813 ==18074== definitely lost: 0 bytes in 0 blocks.
814 ==18074== possibly lost: 3,424 bytes in 20 blocks.
815 ==18074== still reachable: 10,422 bytes in 47 blocks.
816 ==18074== suppressed: 0 bytes in 0 blocks.
what could i derive from this summary? can i say that there is no problem with application?
can somebody explain the following also? what could be the issue in creating thread? I am not even passing something dynamically allocated as thread argument.
795 ==18074== 2,448 bytes in 17 blocks are possibly lost in loss record 32 of 33
796 ==18074== at 0x40056BF: calloc (vg_replace_malloc.c:279)
797 ==18074== by 0xC0D71A: _dl_allocate_tls (in /lib/ld-2.3.4.so)
798 ==18074== by 0xD8A91E: pthread_create@@GLIBC_2.1 (in /lib/tls/libpthread-2.3.4.so)
799 ==18074== by 0x8056A28: Server::intithreads() (ServerProcess.cpp:899)
800 ==18074== by 0x8054E39: main (ServerProcess.h:85)