OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [libgo/] [go/] [syscall/] [libcall_wait4.go] - Blame information for rev 847

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 747 jeremybenn
// 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 wait4 library call.
6
 
7
package syscall
8
 
9
//sys   wait4(pid Pid_t, status *int, options int, rusage *Rusage) (wpid Pid_t, err error)
10
//wait4(pid Pid_t, status *int, options int, rusage *Rusage) Pid_t
11
 
12
func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
13
        var status int
14
        r, err := wait4(Pid_t(pid), &status, options, rusage)
15
        wpid = int(r)
16
        if wstatus != nil {
17
                *wstatus = WaitStatus(status)
18
        }
19
        return
20
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.