Source File
waitid_linux.go
Belonging Package
internal/syscall/unix
// Copyright 2024 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.package uniximport ()const (P_PID = 1P_PIDFD = 3)func ( int, int, *SiginfoChild, int, *syscall.Rusage) error {, , := syscall.Syscall6(syscall.SYS_WAITID, uintptr(), uintptr(), uintptr(unsafe.Pointer()), uintptr(), uintptr(unsafe.Pointer()), 0)if != 0 {return}return nil}
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)