jimr
unread,Jul 26, 2011, 4:17:07 PM7/26/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golan...@googlegroups.com
Hi folks,
Have any of you folks run into problems with your go executables (not using cgo directly) getting a signal 11 under vmware linux?
I've got a vmware instance running debian in 64-bit mode, and I'm finding my program (built w/ 6g/6l) will sometimes dump core with a signal 11 (invalid memory access). I tried re-compiling with 6l using the -e flag to get at what it was doing, but all I got was a minimal trace:
Program terminated with signal 11, Segmentation fault.
#0 0x00000000004260c0 in runtime.sighandler (sig=void, info=void, context=void, gp=void) at /usr/local/src/go/src/pkg/runtime/linux/amd64/signal.c:53
53 runtime·sighandler(int32 sig, Siginfo *info, void *context, G *gp)
Loading Go Runtime support.
(gdb) where
#0 0x00000000004260c0 in runtime.sighandler (sig=void, info=void, context=void, gp=void) at /usr/local/src/go/src/pkg/runtime/linux/amd64/signal.c:53
#1 0x0000000000428a58 in runtime.sigtramp () at /usr/local/src/go/src/pkg/runtime/linux/amd64/sys.s:105
#2 0x0000000000428a6c in runtime.sigignore () at /usr/local/src/go/src/pkg/runtime/linux/amd64/sys.s:114
#3 0x0000000000000000 in ?? ()
As far as I can tell this program runs just fine under my mac, so I'm trying to narrow down the possible causes. I'm in the middle of rebuilding my go tree to the latest release to see if that has any impact.
My big suspicion is that there's something odd going on within my vmware, possibly due to a kernel upgrade that was applied to it within the past few weeks. I was wondering if anyone here might have experienced a similar problem...
Jim