Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 175 for nosys (0.05 sec)

  1. src/runtime/proc.go

    		run0 = 1
    	}
    
    	run := mcount() - sched.nmidle - sched.nmidlelocked - sched.nmsys
    	if run > run0 {
    		return
    	}
    	if run < 0 {
    		print("runtime: checkdead: nmidle=", sched.nmidle, " nmidlelocked=", sched.nmidlelocked, " mcount=", mcount(), " nmsys=", sched.nmsys, "\n")
    		unlock(&sched.lock)
    		throw("checkdead: inconsistent counts")
    	}
    
    	grunning := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x63)
    	ENOSPC          = syscall.Errno(0x1c)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x59)
    	ENOTACTIVE      = syscall.Errno(0x49)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x86)
    	ENOTDIR         = syscall.Errno(0x14)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    		raceReleaseMerge(unsafe.Pointer(&ioSync))
    	}
    	return sendfile(outfd, infd, offset, count)
    }
    
    // TODO
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return -1, ENOSYS
    }
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    	var bufptr *Statfs_t
    	var bufsize uintptr
    	if len(buf) > 0 {
    		bufptr = &buf[0]
    		bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    		err = EIO
    	}
    	return
    }
    
    //sys	Getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    
    // TODO
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return -1, ENOSYS
    }
    
    //sys	ioctl(fd int, req uint, arg uintptr) (err error)
    //sys	ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error) = SYS_IOCTL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. src/syscall/syscall_unix.go

    		return e == EACCES || e == EPERM
    	case oserror.ErrExist:
    		return e == EEXIST || e == ENOTEMPTY
    	case oserror.ErrNotExist:
    		return e == ENOENT
    	case errorspkg.ErrUnsupported:
    		return e == ENOSYS || e == ENOTSUP || e == EOPNOTSUPP
    	}
    	return false
    }
    
    func (e Errno) Temporary() bool {
    	return e == EINTR || e == EMFILE || e == ENFILE || e.Timeout()
    }
    
    func (e Errno) Timeout() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	ENOPOLICY       = syscall.Errno(0x67)
    	ENOPROTOOPT     = syscall.Errno(0x2a)
    	ENOSPC          = syscall.Errno(0x1c)
    	ENOSR           = syscall.Errno(0x62)
    	ENOSTR          = syscall.Errno(0x63)
    	ENOSYS          = syscall.Errno(0x4e)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	ENOMEDIUM       = syscall.Errno(0x55)
    	ENOMEM          = syscall.Errno(0xc)
    	ENOMSG          = syscall.Errno(0x5a)
    	ENOPROTOOPT     = syscall.Errno(0x2a)
    	ENOSPC          = syscall.Errno(0x1c)
    	ENOSYS          = syscall.Errno(0x4e)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	ENOMSG          = syscall.Errno(0x53)
    	ENOPROTOOPT     = syscall.Errno(0x2a)
    	ENOSPC          = syscall.Errno(0x1c)
    	ENOSR           = syscall.Errno(0x5a)
    	ENOSTR          = syscall.Errno(0x5b)
    	ENOSYS          = syscall.Errno(0x4e)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	ENOMEDIUM       = syscall.Errno(0x5d)
    	ENOMEM          = syscall.Errno(0xc)
    	ENOMSG          = syscall.Errno(0x53)
    	ENOPROTOOPT     = syscall.Errno(0x2a)
    	ENOSPC          = syscall.Errno(0x1c)
    	ENOSYS          = syscall.Errno(0x4e)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go

    	ENOMEDIUM       = syscall.Errno(0x55)
    	ENOMEM          = syscall.Errno(0xc)
    	ENOMSG          = syscall.Errno(0x5a)
    	ENOPROTOOPT     = syscall.Errno(0x2a)
    	ENOSPC          = syscall.Errno(0x1c)
    	ENOSYS          = syscall.Errno(0x4e)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x42)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
Back to top