1 // Copyright 2009 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.
7 // For systems with the wait4 library call.
11 //sys wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid Pid_t, err error)
12 //wait4(pid Pid_t, status *_C_int, options _C_int, rusage *Rusage) Pid_t
14 func Wait4(pid
int, wstatus
*WaitStatus
, options
int, rusage
*Rusage
) (wpid
int, err error
) {
16 r
, err
:= wait4(Pid_t(pid
), &status
, options
, rusage
)
19 *wstatus
= WaitStatus(status
)