Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sysvicall6 (0.09 sec)

  1. src/os/pidfd_linux.go

    	case statusReleased:
    		return nil, syscall.EINVAL
    	}
    	defer p.handleTransientRelease()
    
    	var (
    		info   unix.SiginfoChild
    		rusage syscall.Rusage
    		e      syscall.Errno
    	)
    	for {
    		_, _, e = syscall.Syscall6(syscall.SYS_WAITID, _P_PIDFD, handle, uintptr(unsafe.Pointer(&info)), syscall.WEXITED, uintptr(unsafe.Pointer(&rusage)), 0)
    		if e != syscall.EINTR {
    			break
    		}
    	}
    	if e != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top