[go-nuts] Re: Strange, intermittent panic issues

2016-12-07 Thread brikis98
Ah, I gotcha. OK, off I go to dig for unsafe.Pointer and cgo usages in a dependency :) Thanks! Jim On Wednesday, December 7, 2016 at 1:04:23 AM UTC-5, Dave Cheney wrote: > > > > On Wednesday, 7 December 2016 12:52:17 UTC+9, brik...@gmail.com wrote: >> >> 0xb01dfacedebac1e is a poison pill that u

[go-nuts] Re: Strange, intermittent panic issues

2016-12-06 Thread Dave Cheney
On Wednesday, 7 December 2016 12:52:17 UTC+9, brik...@gmail.com wrote: > > 0xb01dfacedebac1e is a poison pill that usually indicates misuse of >> unsafe.Pointer. If there is any use of unsafe.Pointer or CGO in the program >> that would be a good place to start looking. >> > > Interesting. As fa

[go-nuts] Re: Strange, intermittent panic issues

2016-12-06 Thread brikis98
> > 0xb01dfacedebac1e is a poison pill that usually indicates misuse of > unsafe.Pointer. If there is any use of unsafe.Pointer or CGO in the program > that would be a good place to start looking. > Interesting. As far as I know, we don't use unsafe.Pointer or cgo anywhere in the code, but I'l

[go-nuts] Re: Strange, intermittent panic issues

2016-12-06 Thread rlh
0xb01dfacedebac1e is a poison pill that usually indicates misuse of unsafe.Pointer. If there is any use of unsafe.Pointer or CGO in the program that would be a good place to start looking. You can google "0xb01dfacedebac1e" for more details. On Tuesday, December 6, 2016 at 5:00:37 PM UTC-5,