1// Copyright 2022 The Go Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style 3// license that can be found in the LICENSE file. 4 5package os 6 7import ( 8 "syscall" 9 "unsafe" 10) 11 12const _P_PID = 0 13 14func wait6(idtype, id, options int) (status int, errno syscall.Errno) { 15 var status32 int32 // C.int 16 _, _, errno = syscall.Syscall6(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), uintptr(unsafe.Pointer(&status32)), uintptr(options), 0, 0) 17 return int(status32), errno 18} 19