()
| 38 | } |
| 39 | |
| 40 | func getDefaultImagePath() string { |
| 41 | cwd, err := os.Getwd() |
| 42 | if err != nil { |
| 43 | panic(err) |
| 44 | } |
| 45 | return filepath.Join(cwd, "checkpoint") |
| 46 | } |
| 47 | |
| 48 | // newProcess converts [specs.Process] to [libcontainer.Process]. |
| 49 | func newProcess(p *specs.Process) (*libcontainer.Process, error) { |
no outgoing calls
no test coverage detected
searching dependent graphs…