Fix leak in logging and proc pipes

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2015-12-11 11:56:01 -08:00
parent 3010f209ff
commit 9052c886f0
3 changed files with 20 additions and 4 deletions

View file

@ -9,6 +9,7 @@ import (
)
type Process interface {
io.Closer
Pid() (int, error)
Spec() specs.Process
Signal(os.Signal) error