blob: 83aa9538ba9ad3b54b005ed8ab1e9e40312baa6a [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 fuchsia
// +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")
}