mirror of
https://github.com/containerd/containerd.git
synced 2026-07-11 09:09:55 +00:00
7 lines
112 B
Go
7 lines
112 B
Go
package containerd
|
|
|
|
type Process interface {
|
|
// Signal sends a signal to the process.
|
|
SetExited(status int)
|
|
}
|