cgo.go 268 B

1234567
  1. package hcsshim
  2. import "C"
  3. // This import is needed to make the library compile as CGO because HCSSHIM
  4. // only works with CGO due to callbacks from HCS comming back from a C thread
  5. // which is not supported without CGO. See https://github.com/golang/go/issues/10973