- 论坛徽章:
- 0
|
我写了一个linux下的网络转串口程序,网络链接上后就建立一个子线程,主线程负责接收网络数据,然后通过串口发送出去,子线程接收串口数据,然后通过网络发送出去,用valgrind调试看是否有内存泄漏的时候有下面的错误信息
- ==2976==
- ==2976== HEAP SUMMARY:
- ==2976== in use at exit: 344 bytes in 2 blocks
- ==2976== total heap usage: 121 allocs, 119 frees, 12,520 bytes allocated
- ==2976==
- ==2976== 56 bytes in 1 blocks are still reachable in loss record 1 of 2
- ==2976== at 0x4C274A8: malloc (vg_replace_malloc.c:236)
- ==2976== by 0x400D2F4: _dl_map_object_deps (dl-deps.c:506)
- ==2976== by 0x40135F4: dl_open_worker (dl-open.c:262)
- ==2976== by 0x400E985: _dl_catch_error (dl-error.c:178)
- ==2976== by 0x4012FB9: _dl_open (dl-open.c:554)
- ==2976== by 0x591CBDF: do_dlopen (dl-libc.c:86)
- ==2976== by 0x400E985: _dl_catch_error (dl-error.c:178)
- ==2976== by 0x591CD36: __libc_dlopen_mode (dl-libc.c:47)
- ==2976== by 0x4E3CFEB: pthread_cancel_init (unwind-forcedunwind.c:53)
- ==2976== by 0x4E39BC2: pthread_cancel (pthread_cancel.c:40)
- ==2976== by 0x402F4A: general_thread_cancel(unsigned long) (generalthread.cpp:225)
- ==2976== by 0x4070B3: CUartDemon::UartDemonProcess() (uartdemon.cpp:425)
- ==2976==
- ==2976== 288 bytes in 1 blocks are possibly lost in loss record 2 of 2
- ==2976== at 0x4C267CC: calloc (vg_replace_malloc.c:467)
- ==2976== by 0x4012455: _dl_allocate_tls (dl-tls.c:300)
- ==2976== by 0x4E34728: pthread_create@@GLIBC_2.2.5 (allocatestack.c:561)
- ==2976== by 0x402F30: general_thread_create(unsigned long*, int (*)(void*), void*) (generalthread.cpp:221)
- ==2976== by 0x407086: CUartDemon::UartDemonProcess() (uartdemon.cpp:420)
- ==2976== by 0x406296: main (uartdemon.cpp:254)
- ==2976==
- ==2976== LEAK SUMMARY:
- ==2976== definitely lost: 0 bytes in 0 blocks
- ==2976== indirectly lost: 0 bytes in 0 blocks
- ==2976== possibly lost: 288 bytes in 1 blocks
- ==2976== still reachable: 56 bytes in 1 blocks
- ==2976== suppressed: 0 bytes in 0 blocks
- ==2976==
- ==2976== For counts of detected and suppressed errors, rerun with: -v
- ==2976== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 4 from 4)
复制代码 上面的错误感觉都不是我写的函数导致,而是系统条用函数导致的问题,这些错误是不是可以忽略啊,如果不可以应该怎么样消除掉这个错误呢?
先行谢过 |
|