8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
7 lines
235 B
Go
7 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
|
|
}
|