URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [go/] [syscall/] [libcall_wait4.go] - Rev 747
Compare with Previous | Blame | View Log
// Copyright 2009 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.// For systems with the wait4 library call.package syscall//sys wait4(pid Pid_t, status *int, options int, rusage *Rusage) (wpid Pid_t, err error)//wait4(pid Pid_t, status *int, options int, rusage *Rusage) Pid_tfunc Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {var status intr, err := wait4(Pid_t(pid), &status, options, rusage)wpid = int(r)if wstatus != nil {*wstatus = WaitStatus(status)}return}
