1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // +build windows
- package windows
- import (
- "github.com/Sirupsen/logrus"
- "github.com/docker/docker/daemon/execdriver"
- "github.com/microsoft/hcsshim"
- )
- // Terminate implements the exec driver Driver interface.
- func (d *Driver) Terminate(p *execdriver.Command) error {
- logrus.Debugf("WindowsExec: Terminate() id=%s", p.ID)
- return kill(p.ID, p.ContainerPid)
- }
- // Kill implements the exec driver Driver interface.
- func (d *Driver) Kill(p *execdriver.Command, sig int) error {
- logrus.Debugf("WindowsExec: Kill() id=%s sig=%d", p.ID, sig)
- return kill(p.ID, p.ContainerPid)
- }
- func kill(id string, pid int) error {
- logrus.Debugln("kill() ", id, pid)
- var err error
- // Terminate Process
- if err = hcsshim.TerminateProcessInComputeSystem(id, uint32(pid)); err != nil {
- logrus.Warnf("Failed to terminate pid %d in %s", id, pid, err)
- // Ignore errors
- err = nil
- }
- if terminateMode {
- // Terminate the compute system
- if err = hcsshim.TerminateComputeSystem(id); err != nil {
- logrus.Errorf("Failed to terminate %s - %s", id, err)
- }
- } else {
- // Shutdown the compute system
- if err = hcsshim.ShutdownComputeSystem(id); err != nil {
- logrus.Errorf("Failed to shutdown %s - %s", id, err)
- }
- }
- return err
- }
|