iop/apps/node/internal/workspace/command_process_other.go
toki dc9a9a8c59 feat(agent): 단일 요청 Agent 실행 경계를 구현한다
승인된 execution preset을 Edge 조정 경계와 Node workspace/tool 실행 경계로 연결해 단일 요청 수명주기와 관측 계약을 일관되게 처리한다.
2026-08-07 07:03:55 +09:00

13 lines
284 B
Go

//go:build !darwin && !linux
package workspace
import "os"
func startCommandProcess(commandLaunchRecord, *os.File, *commandOutput) (*commandProcess, error) {
return nil, errCommandPlatformUnsupported
}
func runCommandShim() int { return 125 }
func terminateProcessGroup(int) {}