[go-nuts] Re: Blocking waitgroup

2017-01-15 Thread Vyas Giridharan
Thanks. On Sun, Jan 15, 2017 at 2:05 AM, Dave Cheney wrote: > When your program blocks, hit control-\ and you'll get a stack trace of > every running goroutine, the ones blocked inside downPart will point to the > place they are blocked. > > > On Sunday, 15 January 2017 05:33:25 UTC+11, vyasgir..

[go-nuts] Re: Blocking waitgroup

2017-01-14 Thread Dave Cheney
When your program blocks, hit control-\ and you'll get a stack trace of every running goroutine, the ones blocked inside downPart will point to the place they are blocked. On Sunday, 15 January 2017 05:33:25 UTC+11, vyasgir...@gmail.com wrote: > > I am implementing a multi part file downloader a