Use __builtin_memmove for trivially copyable types
[official-gcc.git] / libgo / go / syscall / libcall_wait4.go
blob00b6874d1ad7f9351e2d93626662f049e2fcda6e
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.
5 // +build !aix
7 // For systems with the wait4 library call.
9 package syscall
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) {
15 var status _C_int
16 r, err := wait4(Pid_t(pid), &status, options, rusage)
17 wpid = int(r)
18 if wstatus != nil {
19 *wstatus = WaitStatus(status)
21 return