From: Tobias Klauser Date: Sun, 9 Apr 2023 11:39:12 +0000 (+0200) Subject: os: adjust wait6/waitid comment for netbsd X-Git-Tag: go1.21rc1~960 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ef82b4c94e10ea29acb90891d4ec8d4e7e892410;p=gostls13.git os: adjust wait6/waitid comment for netbsd CL 431855 changed (*Process).blockUntilWaitable on netbsd to use wait6 again. Update #48789 Change-Id: I948f5445a44ab2e82c02560480a2a244d2b5f473 Reviewed-on: https://go-review.googlesource.com/c/go/+/483396 Reviewed-by: Benny Siegert Run-TryBot: Tobias Klauser TryBot-Result: Gopher Robot Reviewed-by: Ian Lance Taylor --- diff --git a/src/os/wait_unimp.go b/src/os/wait_unimp.go index d4aac372fb..810e35da63 100644 --- a/src/os/wait_unimp.go +++ b/src/os/wait_unimp.go @@ -3,8 +3,7 @@ // license that can be found in the LICENSE file. // aix, darwin, js/wasm, openbsd, solaris and wasip1/wasm don't implement -// waitid/wait6. netbsd implements wait6, but that is causing test -// failures, see issue #48789. +// waitid/wait6. //go:build aix || darwin || (js && wasm) || openbsd || solaris || wasip1