could not launch process: could not get thread count
Closed this issue · 1 comments
aicochow commented
- Plugin version (or commit hash):
0.13.1914
- IDE name and version:
IntelliJ version:2016.3
- Java version:
java version "1.8.0_112"- OS name and version:
- What are you trying to do?
debug go
- What would you expect to happen?
can debug go
- What happens?
when I debug go
could not launch process: could not get thread count
Your issue description goes here.
Please be as detailed as possible
package main
import "fmt"
func main() {
pos, neg := adder(), adder()
for i := 0; i < 10; i++ {
fmt.Println(pos(i), neg(-2 * i))
}
}
func adder() func(int) int {
sum := 0
return func(x int) int {
sum += x
return sum
}
}
Or include a screenshot / video of the issue.
dlsniper commented
Hi,
This is a problem in Delve, the debugger backend for the plugin.
We can't do anything about it until this is solved.
Please see: https://github.com/derekparker/delve/issues/645 for more information on it.
I'll close this for now.