getKernelVersion_darwin.go 212 B

12345678910
  1. package docker
  2. import (
  3. "fmt"
  4. "github.com/dotcloud/docker/utils"
  5. )
  6. func getKernelVersion() (*utils.KernelVersionInfo, error) {
  7. return nil, fmt.Errorf("Kernel version detection is not available on darwin")
  8. }