OrangePi3588Media/agent/internal/procctl/procctl_other.go
sladro 2a562514bc
Some checks are pending
CI / host-build (push) Waiting to run
CI / rk3588-cross-build (push) Waiting to run
修改agent功能,加入重启,准备测试
2026-01-10 11:06:39 +08:00

12 lines
304 B
Go

//go:build !linux
package procctl
import "time"
func isAlive(pid int) (bool, error) { return false, ErrNotSupported }
func startProcess(execPath, workDir, configPath string) (int, error) { return 0, ErrNotSupported }
func stopProcess(pid int, timeout time.Duration) error { return ErrNotSupported }