이 블록에서 언급 된 모든 기능은 라이브러리 기능입니다. 이 메모리 누수를 어떻게 해결할 수 있습니까?
" 여전히 접근 가능 "범주 아래에 나열됩니다 . (매우 유사하지만 크기가 다른 4 개가 더 있습니다)
630 bytes in 1 blocks are still reachable in loss record 5 of 5
at 0x4004F1B: calloc (vg_replace_malloc.c:418)
by 0x931CD2: _dl_new_object (dl-object.c:52)
by 0x92DD36: _dl_map_object_from_fd (dl-load.c:972)
by 0x92EFB6: _dl_map_object (dl-load.c:2251)
by 0x939F1B: dl_open_worker (dl-open.c:255)
by 0x935965: _dl_catch_error (dl-error.c:178)
by 0x9399C5: _dl_open (dl-open.c:584)
by 0xA64E31: do_dlopen (dl-libc.c:86)
by 0x935965: _dl_catch_error (dl-error.c:178)
by 0xA64FF4: __libc_dlopen_mode (dl-libc.c:47)
by 0xAE6086: pthread_cancel_init (unwind-forcedunwind.c:53)
by 0xAE61FC: _Unwind_ForcedUnwind (unwind-forcedunwind.c:126)
캐치 : 프로그램을 실행 한 후에는 메모리 누수가 발생하지 않았지만 Valgrind 출력에 한 줄이 추가되었는데 이전에는 없었습니다.
munmap ()으로 인해 /lib/libgcc_s-4.4.4-20100630.so.1의 0x5296fa0-0x52af438에서 심볼 무시
누출을 해결할 수없는 경우 누군가 munmap () 라인으로 인해 Valgrind가 "아직 도달 할 수있는"누출을보고하는 이유를 적어도 설명 할 수 있습니까?
편집하다:
최소 테스트 샘플은 다음과 같습니다.
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void *runner(void *param) {
/* some operations ... */
pthread_exit(NULL);
}
int n;
int main(void) {
int i;
pthread_t *threadIdArray;
n=10; /* for example */
threadIdArray = malloc((n+n-1)*sizeof(pthread_t));
for(i=0;i<(n+n-1);i++) {
if( pthread_create(&threadIdArray[i],NULL,runner,NULL) != 0 ) {
printf("Couldn't create thread %d\n",i);
exit(1);
}
}
for(i=0;i<(n+n-1);i++) {
pthread_join(threadIdArray[i],NULL);
}
free(threadIdArray);
return(0);
}
로 실행 :
valgrind -v --leak-check=full --show-reachable=yes ./a.out