// 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. | |
//go: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") | |
} |