Revert "feat(tools): add exec tool enhancement with background execution and …"

This reverts commit f901af8cbc.
This commit is contained in:
daming大铭
2026-03-22 00:39:47 +08:00
committed by GitHub
parent f901af8cbc
commit ebcd5645f1
11 changed files with 31 additions and 2082 deletions
-14
View File
@@ -1,14 +0,0 @@
//go:build !windows
package tools
import (
"syscall"
)
func killProcessGroup(pid int) error {
if err := syscall.Kill(-pid, syscall.SIGKILL); err != nil {
_ = syscall.Kill(pid, syscall.SIGKILL)
}
return nil
}