Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for WNOWAIT (0.16 sec)

  1. src/os/wait_wait6.go

    // It does not actually call p.Wait.
    func (p *Process) blockUntilWaitable() (bool, error) {
    	var errno syscall.Errno
    	for {
    		_, errno = wait6(_P_PID, p.Pid, syscall.WEXITED|syscall.WNOWAIT)
    		if errno != syscall.EINTR {
    			break
    		}
    	}
    	runtime.KeepAlive(p)
    	if errno == syscall.ENOSYS {
    		return false, nil
    	} else if errno != 0 {
    		return false, NewSyscallError("wait6", errno)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 781 bytes
    - Viewed (0)
  2. src/os/wait_waitid.go

    	var siginfo [16]uint64
    	psig := &siginfo[0]
    	var e syscall.Errno
    	for {
    		_, _, e = syscall.Syscall6(syscall.SYS_WAITID, _P_PID, uintptr(p.Pid), uintptr(unsafe.Pointer(psig)), syscall.WEXITED|syscall.WNOWAIT, 0, 0)
    		if e != syscall.EINTR {
    			break
    		}
    	}
    	runtime.KeepAlive(p)
    	if e != 0 {
    		// waitid has been available since Linux 2.6.9, but
    		// reportedly is not available in Ubuntu on Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:27:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	VSUSP                           = 9
    	VTIME                           = 10
    	WCONTINUED                      = 0x4
    	WEXITED                         = 0x8
    	WNOHANG                         = 0x1
    	WNOWAIT                         = 0x20
    	WSTOPPED                        = 0x10
    	WUNTRACED                       = 0x2
    	_BPX_SWAP                       = 1
    	_BPX_NONSWAP                    = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/syscall/zerrors_darwin_arm64.go

    	VWERASE                           = 0x4
    	WCONTINUED                        = 0x10
    	WCOREFLAG                         = 0x80
    	WEXITED                           = 0x4
    	WNOHANG                           = 0x1
    	WNOWAIT                           = 0x20
    	WORDSIZE                          = 0x40
    	WSTOPPED                          = 0x8
    	WUNTRACED                         = 0x2
    )
    
    // Errors
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  5. src/syscall/zerrors_darwin_amd64.go

    	VWERASE                           = 0x4
    	WCONTINUED                        = 0x10
    	WCOREFLAG                         = 0x80
    	WEXITED                           = 0x4
    	WNOHANG                           = 0x1
    	WNOWAIT                           = 0x20
    	WORDSIZE                          = 0x40
    	WSTOPPED                          = 0x8
    	WUNTRACED                         = 0x2
    )
    
    // Errors
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  6. src/syscall/zerrors_solaris_amd64.go

    	WCONTFLG                      = 0xffff
    	WCONTINUED                    = 0x8
    	WCOREFLG                      = 0x80
    	WEXITED                       = 0x1
    	WNOHANG                       = 0x40
    	WNOWAIT                       = 0x80
    	WOPTMASK                      = 0xcf
    	WRAP                          = 0x20000
    	WSIGMASK                      = 0x7f
    	WSTOPFLG                      = 0x7f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  7. src/syscall/zerrors_dragonfly_amd64.go

    	WCONTINUED                        = 0x4
    	WCOREFLAG                         = 0x80
    	WEXITED                           = 0x10
    	WLINUXCLONE                       = 0x80000000
    	WNOHANG                           = 0x1
    	WNOWAIT                           = 0x8
    	WSTOPPED                          = 0x7f
    	WUNTRACED                         = 0x2
    )
    
    // Errors
    const (
    	E2BIG           = Errno(0x7)
    	EACCES          = Errno(0xd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 59.6K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_386.go

    	WCLONE                           = 0x80000000
    	WCONTINUED                       = 0x8
    	WEXITED                          = 0x4
    	WNOHANG                          = 0x1
    	WNOTHREAD                        = 0x20000000
    	WNOWAIT                          = 0x1000000
    	WORDSIZE                         = 0x20
    	WSTOPPED                         = 0x2
    	WUNTRACED                        = 0x2
    )
    
    // Errors
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_amd64.go

    	WCLONE                           = 0x80000000
    	WCONTINUED                       = 0x8
    	WEXITED                          = 0x4
    	WNOHANG                          = 0x1
    	WNOTHREAD                        = 0x20000000
    	WNOWAIT                          = 0x1000000
    	WORDSIZE                         = 0x40
    	WSTOPPED                         = 0x2
    	WUNTRACED                        = 0x2
    )
    
    // Errors
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_ppc64.go

    	WCLONE                           = 0x80000000
    	WCONTINUED                       = 0x8
    	WEXITED                          = 0x4
    	WNOHANG                          = 0x1
    	WNOTHREAD                        = 0x20000000
    	WNOWAIT                          = 0x1000000
    	WORDSIZE                         = 0x40
    	WSTOPPED                         = 0x2
    	WUNTRACED                        = 0x2
    )
    
    // Errors
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.9K bytes
    - Viewed (0)
Back to top