Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for statusMap (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func (w WaitStatus) StopSignal() syscall.Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return syscall.Signal(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) TrapCause() int { return -1 }
    
    //sys	wait4(pid int32, statusp *_C_int, options int, rusage *Rusage) (wpid int32, err error)
    
    func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (int, error) {
    	var status _C_int
    	rpid, err := wait4(int32(pid), &status, options, rusage)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top