libcall_wait4.go 653 B

12345678910111213141516171819202122
  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.
  4. // +build !aix
  5. // For systems with the wait4 library call.
  6. package syscall
  7. //sys wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid Pid_t, err error)
  8. //wait4(pid Pid_t, status *_C_int, options _C_int, rusage *Rusage) Pid_t
  9. func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
  10. var status _C_int
  11. r, err := wait4(Pid_t(pid), &status, options, rusage)
  12. wpid = int(r)
  13. if wstatus != nil {
  14. *wstatus = WaitStatus(status)
  15. }
  16. return
  17. }