github.com/random-liu/containerd@v0.2.5/ctr/container_solaris.go (about)

     1  package main
     2  
     3  import (
     4  	"errors"
     5  )
     6  
     7  func createStdio() (s stdio, err error) {
     8  	return s, errors.New("createStdio not implemented on Solaris")
     9  }