Skip to content

Commit

Permalink
back out the SIGINT attempt (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Sep 24, 2024
1 parent 9cf5787 commit 123a4ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
3 changes: 1 addition & 2 deletions agent/proctree/impl_posix.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ package proctree
import (
"os/exec"
"sync"
"syscall"
)

func Init(_ string) error {
Expand Down Expand Up @@ -53,7 +52,7 @@ func WaitChild(c *Child) error {
}

func StopChild(c *Child) error {
if err := syscall.Kill(c.cmd.Process.Pid, syscall.SIGINT); err != nil {
if err := c.cmd.Process.Kill(); err != nil {
return err
}
return nil
Expand Down
18 changes: 1 addition & 17 deletions agent/proctree/impl_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,23 +71,7 @@ func WaitChild(c *Child) error {
}

func StopChild(c *Child) error {
if err := sendSigInt(c); err != nil {
return err
}
return nil
}

func sendSigInt(c *Child) error {
dll, err := syscall.LoadDLL("kernel32.dll")
if er != nil {
return err
}
proc, err := dll.FindProc("GenerateConsoleCtrlEvent")
if err != nil {
return err
}
r, _, err := proc.Call(syscall.CTRL_BREAK_EVENT, uintptr(c.cmd.Process.Pid))
if err != nil {
if err := c.cmd.Process.Kill(); err != nil {
return err
}
return nil
Expand Down

0 comments on commit 123a4ef

Please sign in to comment.