You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What operating system and processor architecture are you using (go env)?
set GOARCH=amd64
set GOBIN=C:\Users\Home\go\bin
set GOEXE=.exe
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOOS=windows
set GOPATH=C:\Users\Home\go
set GORACE=
set GOROOT=C:\go
set GOTOOLDIR=C:\go\pkg\tool\windows_amd64
set GO15VENDOREXPERIMENT=1
set CC=gcc
set GOGCCFLAGS=-m64 -mthreads -fmessage-length=0
set CXX=g++
set CGO_ENABLED=1
What did you do?
I ran the code.
package main
import"C"import"fmt"var_ C.intfuncmain() {
fmt.Println("Jesus saves Go from deadlock")
select {}
}
What did you expect to see?
Jesus saves Go from deadlock
fatal error: all goroutines are asleep - deadlock!
...
What did you see instead?
Jesus saves Go from deadlock
(the execution don't complete without any error message)
Seems that import C prevents the program from raising deadlock.
The text was updated successfully, but these errors were encountered:
go version
)?go version go1.6.2 windows/amd64
go env
)?I ran the code.
Seems that
import C
prevents the program from raising deadlock.The text was updated successfully, but these errors were encountered: