Files
faas/gateway/vendor/github.com/docker/docker/container/state_solaris.go
2017-04-27 09:29:14 +01:00

8 lines
235 B
Go

package container
// setFromExitStatus is a platform specific helper function to set the state
// based on the ExitStatus structure.
func (s *State) setFromExitStatus(exitStatus *ExitStatus) {
s.ExitCodeValue = exitStatus.ExitCode
}