cdb5947f86
Signed-off-by: John Howard <jhoward@microsoft.com>
13 lines
260 B
Go
13 lines
260 B
Go
package supervisor
|
|
|
|
import "github.com/docker/containerd/runtime"
|
|
|
|
type platformStartTask struct {
|
|
Checkpoint *runtime.Checkpoint
|
|
}
|
|
|
|
func (task *startTask) setTaskCheckpoint(t *StartTask) {
|
|
if t.Checkpoint != nil {
|
|
task.Checkpoint = t.Checkpoint.Name
|
|
}
|
|
}
|