c5843b7615
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
24 lines
499 B
Go
24 lines
499 B
Go
// +build linux
|
|
|
|
package shim
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/crosbymichael/console"
|
|
)
|
|
|
|
type process interface {
|
|
// Pid returns the pid for the process
|
|
Pid() int
|
|
// Resize resizes the process console
|
|
Resize(ws console.WinSize) error
|
|
// Exited sets the exit status for the process
|
|
Exited(status int)
|
|
// Status returns the exit status
|
|
Status() int
|
|
// Delete deletes the process and its resourcess
|
|
Delete(context.Context) error
|
|
// Signal directly signals the process
|
|
Signal(int) error
|
|
}
|