Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for nosys (0.06 sec)

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

    	ENONET          = syscall.Errno(0x50)
    	ENOPKG          = syscall.Errno(0x71)
    	ENOPROTOOPT     = syscall.Errno(0x2a)
    	ENOSR           = syscall.Errno(0x4a)
    	ENOSTR          = syscall.Errno(0x48)
    	ENOSYS          = syscall.Errno(0x5a)
    	ENOTCONN        = syscall.Errno(0x39)
    	ENOTEMPTY       = syscall.Errno(0x42)
    	ENOTNAM         = syscall.Errno(0x76)
    	ENOTRECOVERABLE = syscall.Errno(0x85)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	ENONET          = syscall.Errno(0x40)
    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x5c)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x26)
    	ENOTCONN        = syscall.Errno(0x6b)
    	ENOTEMPTY       = syscall.Errno(0x27)
    	ENOTNAM         = syscall.Errno(0x76)
    	ENOTRECOVERABLE = syscall.Errno(0x83)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/syscall/syscall_aix.go

    }
    
    func Gettimeofday(tv *Timeval) (err error) {
    	err = gettimeofday(tv, nil)
    	return
    }
    
    // TODO
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return -1, ENOSYS
    }
    
    //sys	getdirent(fd int, buf []byte) (n int, err error)
    
    func ReadDirent(fd int, buf []byte) (n int, err error) {
    	return getdirent(fd, buf)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	ENONET          = syscall.Errno(0x40)
    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x5c)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x26)
    	ENOTCONN        = syscall.Errno(0x6b)
    	ENOTEMPTY       = syscall.Errno(0x27)
    	ENOTNAM         = syscall.Errno(0x76)
    	ENOTRECOVERABLE = syscall.Errno(0x83)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	ENONET          = syscall.Errno(0x40)
    	ENOPKG          = syscall.Errno(0x41)
    	ENOPROTOOPT     = syscall.Errno(0x5c)
    	ENOSR           = syscall.Errno(0x3f)
    	ENOSTR          = syscall.Errno(0x3c)
    	ENOSYS          = syscall.Errno(0x26)
    	ENOTCONN        = syscall.Errno(0x6b)
    	ENOTEMPTY       = syscall.Errno(0x27)
    	ENOTNAM         = syscall.Errno(0x76)
    	ENOTRECOVERABLE = syscall.Errno(0x83)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. src/net/net_fake.go

    		return true
    	}
    	if !timer.Stop() {
    		return false
    	}
    	timer.Reset(d)
    	return true
    }
    
    func sysSocket(family, sotype, proto int) (int, error) {
    	return 0, os.NewSyscallError("sysSocket", syscall.ENOSYS)
    }
    
    func fakeListen(fd *netFD, laddr sockaddr) (err error) {
    	wrapErr := func(err error) error {
    		if errno, ok := err.(syscall.Errno); ok {
    			err = os.NewSyscallError("listen", errno)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	mnext        int64    // number of m's that have been created and next M ID
    	maxmcount    int32    // maximum number of m's allowed (or die)
    	nmsys        int32    // number of system m's not counted for deadlock
    	nmfreed      int64    // cumulative number of freed m's
    
    	ngsys atomic.Int32 // number of system goroutines
    
    	pidle        puintptr // idle p's
    	npidle       atomic.Int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		err := utimensat(AT_FDCWD, path, nil, 0)
    		if err != ENOSYS {
    			return err
    		}
    		return utimes(path, nil)
    	}
    	if len(tv) != 2 {
    		return EINVAL
    	}
    	var ts [2]Timespec
    	ts[0] = NsecToTimespec(TimevalToNsec(tv[0]))
    	ts[1] = NsecToTimespec(TimevalToNsec(tv[1]))
    	err := utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    	if err != ENOSYS {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top