Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for sys_wait4 (0.28 sec)

  1. src/syscall/zsysnum_linux_riscv64.go

    	SYS_MOVE_PAGES             = 239
    	SYS_RT_TGSIGQUEUEINFO      = 240
    	SYS_PERF_EVENT_OPEN        = 241
    	SYS_ACCEPT4                = 242
    	SYS_RECVMMSG               = 243
    	SYS_ARCH_SPECIFIC_SYSCALL  = 244
    	SYS_WAIT4                  = 260
    	SYS_PRLIMIT64              = 261
    	SYS_FANOTIFY_INIT          = 262
    	SYS_FANOTIFY_MARK          = 263
    	SYS_NAME_TO_HANDLE_AT      = 264
    	SYS_OPEN_BY_HANDLE_AT      = 265
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 23 11:00:41 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_linux_arm64.go

    	SYS_MOVE_PAGES             = 239
    	SYS_RT_TGSIGQUEUEINFO      = 240
    	SYS_PERF_EVENT_OPEN        = 241
    	SYS_ACCEPT4                = 242
    	SYS_RECVMMSG               = 243
    	SYS_ARCH_SPECIFIC_SYSCALL  = 244
    	SYS_WAIT4                  = 260
    	SYS_PRLIMIT64              = 261
    	SYS_FANOTIFY_INIT          = 262
    	SYS_FANOTIFY_MARK          = 263
    	SYS_NAME_TO_HANDLE_AT      = 264
    	SYS_OPEN_BY_HANDLE_AT      = 265
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  3. src/os/wait6_freebsd64.go

    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 0
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	var status32 int32 // C.int
    	_, _, errno = syscall.Syscall6(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), uintptr(unsafe.Pointer(&status32)), uintptr(options), 0, 0)
    	return int(status32), errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 547 bytes
    - Viewed (0)
  4. src/os/wait6_freebsd_386.go

    )
    
    const _P_PID = 0
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	// freebsd32_wait6_args{ idtype, id1, id2, status, options, wrusage, info }
    	_, _, errno = syscall.Syscall9(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), 0, uintptr(unsafe.Pointer(&status)), uintptr(options), 0, 0, 0, 0)
    	return status, errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 544 bytes
    - Viewed (0)
  5. src/os/wait6_netbsd.go

    	"unsafe"
    )
    
    const _P_PID = 1 // not 0 as on FreeBSD and Dragonfly!
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	var status32 int32 // C.int
    	_, _, errno = syscall.Syscall6(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), uintptr(unsafe.Pointer(&status32)), uintptr(options), 0, 0)
    	return int(status32), errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 534 bytes
    - Viewed (0)
  6. src/os/wait6_freebsd_arm.go

    )
    
    const _P_PID = 0
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	// freebsd32_wait6_args{ idtype, pad, id1, id2, status, options, wrusage, info }
    	_, _, errno = syscall.Syscall9(syscall.SYS_WAIT6, uintptr(idtype), 0, uintptr(id), 0, uintptr(unsafe.Pointer(&status)), uintptr(options), 0, 0, 0)
    	return status, errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 549 bytes
    - Viewed (0)
  7. src/os/wait6_dragonfly.go

    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 0
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	var status32 int32 // C.int
    	_, _, errno = syscall.Syscall6(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), uintptr(unsafe.Pointer(&status32)), uintptr(options), 0, 0)
    	return int(status32), errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 496 bytes
    - Viewed (0)
  8. src/syscall/zsysnum_plan9.go

    	SYS_SEMRELEASE  = 38
    	SYS_SEEK        = 39
    	SYS_FVERSION    = 40
    	SYS_ERRSTR      = 41
    	SYS_STAT        = 42
    	SYS_FSTAT       = 43
    	SYS_WSTAT       = 44
    	SYS_FWSTAT      = 45
    	SYS_MOUNT       = 46
    	SYS_AWAIT       = 47
    	SYS_PREAD       = 50
    	SYS_PWRITE      = 51
    	SYS_TSEMACQUIRE = 52
    	SYS_NSEC        = 53
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go

    	SYS_SEMRELEASE  = 38
    	SYS_SEEK        = 39
    	SYS_FVERSION    = 40
    	SYS_ERRSTR      = 41
    	SYS_STAT        = 42
    	SYS_FSTAT       = 43
    	SYS_WSTAT       = 44
    	SYS_FWSTAT      = 45
    	SYS_MOUNT       = 46
    	SYS_AWAIT       = 47
    	SYS_PREAD       = 50
    	SYS_PWRITE      = 51
    	SYS_TSEMACQUIRE = 52
    	SYS_NSEC        = 53
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  10. src/os/pidfd_linux.go

    		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 {
    		return nil, NewSyscallError("waitid", e)
    	}
    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