Re: [go-nuts] memory leak of C functions with pprof WriteHeapProfile

2020-04-21 Thread Pavan
Thanks for the link. even valgrind gives good info on go binary for C functions. Regards On Tuesday, April 21, 2020 at 4:01:07 AM UTC+5:30, robert engels wrote: > > see > https://www.gnu.org/software/libc/manual/html_node/Allocation-Debugging.html > for > C memory debugging > > On Apr 20, 2

Re: [go-nuts] memory leak of C functions with pprof WriteHeapProfile

2020-04-20 Thread robert engels
see https://www.gnu.org/software/libc/manual/html_node/Allocation-Debugging.html for C memory debugging > On Apr 20, 2020, at 1:19 PM, Pavan wrote: > > Hi, I am debugging memory leak in a go application. It has lot

[go-nuts] memory leak of C functions with pprof WriteHeapProfile

2020-04-20 Thread Pavan
Hi, I am debugging memory leak in a go application. It has lot of C functions called with in. I am trying to use pprof.WriteHeapProfilepprof to dump the memory allocations . after generating dump file with WriteHeapProfile, it doesnt indicate memory allocations with-in C functions. ex: If i