OSDN Git Service

Implement new syscall package.
[pf3gnuchains/gcc-fork.git] / libgo / go / syscall / libcall_waitpid.go
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
5 // For systems with the waitpid library call.
6
7 package syscall
8
9 //sys   waitpid(pid Pid_t, status *int, options int) (wpid Pid_t, errno int)
10 //waitpid(pid Pid_t, status *int, options int) Pid_t
11
12 func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, errno int) {
13         var status int
14         r, err := waitpid(Pid_t(pid), &status, options)
15         wpid = int(r)
16         errno = err
17         if wstatus != nil {
18                 *wstatus = WaitStatus(status)
19         }
20         return
21 }