blob: f22f02020f21cf745a54b8642ebee529148ccdf4 [file] [log] [blame]
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !cgo
package os
import "syscall/zx"
func fdioStartProcess(name string, argv []string, attr *ProcAttr) (zx.Handle, error) {
panic("os.fdioStartProcess unimplemented")
}
func (p *Process) kill() error {
panic("os.Process.kill unimplemented")
}
func (p *Process) wait() (*ProcessState, error) {
panic("os.Process.wait unimplemented")
}