mirror of
https://github.com/golang/go
synced 2024-11-13 19:50:21 -07:00
a38a917aee
You were a useful port and you've served your purpose. Thanks for all the play. A subsequent CL will remove amd64p32 (including assembly files and toolchain bits) and remaining bits. The amd64p32 removal will be separated into its own CL in case we want to support the Linux x32 ABI in the future and want our old amd64p32 support as a starting point. Updates #30439 Change-Id: Ia3a0c7d49804adc87bf52a4dea7e3d3007f2b1cd Reviewed-on: https://go-review.googlesource.com/c/go/+/199499 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
17 lines
585 B
Go
17 lines
585 B
Go
// Copyright 2016 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 aix darwin dragonfly js,wasm netbsd openbsd solaris
|
|
|
|
package os
|
|
|
|
// blockUntilWaitable attempts to block until a call to p.Wait will
|
|
// succeed immediately, and reports whether it has done so.
|
|
// It does not actually call p.Wait.
|
|
// This version is used on systems that do not implement waitid,
|
|
// or where we have not implemented it yet.
|
|
func (p *Process) blockUntilWaitable() (bool, error) {
|
|
return false, nil
|
|
}
|