container/state_unix.go
77af7d10
 // +build linux freebsd
 
6bb0d181
 package container
77af7d10
 
 // setFromExitStatus is a platform specific helper function to set the state
 // based on the ExitStatus structure.
9c4570a9
 func (s *State) setFromExitStatus(exitStatus *ExitStatus) {
77af7d10
 	s.ExitCode = exitStatus.ExitCode
 	s.OOMKilled = exitStatus.OOMKilled
 }