[go-nuts] Re: Procs lines in Trace web viewer

2017-01-12 Thread Marko Kevac
Library which is used to draw this charts have few event types internally. Some event types have begin and an end (let's call them "events with duration"), some are instant. An instant event can happen asynchronously (at the same time) with an event with duration. In that case, chart library put

Re: [go-nuts] Debug memory leaks in cgo calls

2016-12-16 Thread Marko Kevac
There is an address sanitizer in gcc too. On Thursday, December 15, 2016 at 10:15:23 PM UTC+3, Pablo Rozas-Larraondo wrote: > > Thanks Ian, > > So if I understand it well, this involves using clang compiler instead of > the default gcc when building Go code that uses cgo. I'll do some research