mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-02-05 13:10:07 +00:00
[agent v0.3.6] 🐛 fix: kill process group
This commit is contained in:
20
pkg/utils/proccess_group_linux.go
Normal file
20
pkg/utils/proccess_group_linux.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"os"
|
||||
)
|
||||
|
||||
type ProcessExitGroup struct{}
|
||||
|
||||
func NewProcessExitGroup() (ProcessExitGroup, error) {
|
||||
return ProcessExitGroup{}, errors.New("not implement")
|
||||
}
|
||||
|
||||
func (g ProcessExitGroup) Dispose() error {
|
||||
return errors.New("not implement")
|
||||
}
|
||||
|
||||
func (g ProcessExitGroup) AddProcess(p *os.Process) error {
|
||||
return errors.New("not implement")
|
||||
}
|
||||
Reference in New Issue
Block a user