Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 175 for nosys (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/syscall/exec_libc.go

    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Set the controlling TTY to Ctty
    	if sys.Setctty {
    		// On AIX, TIOCSCTTY is undefined
    		if TIOCSCTTY == 0 {
    			err1 = ENOSYS
    			goto childerror
    		}
    		err1 = ioctl(uintptr(sys.Ctty), uintptr(TIOCSCTTY), 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Restore original rlimit.
    	if rlim != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_386.go

    const rlimInf32 = ^uint32(0)
    const rlimInf64 = ^uint64(0)
    
    func Getrlimit(resource int, rlim *Rlimit) (err error) {
    	err = Prlimit(0, resource, nil, rlim)
    	if err != ENOSYS {
    		return err
    	}
    
    	rl := rlimit32{}
    	err = getrlimit(resource, &rl)
    	if err != nil {
    		return
    	}
    
    	if rl.Cur == rlimInf32 {
    		rlim.Cur = rlimInf64
    	} else {
    		rlim.Cur = uint64(rl.Cur)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	ENOMSG          = syscall.Errno(0x23)
    	ENOPROTOOPT     = syscall.Errno(0x3d)
    	ENOSPC          = syscall.Errno(0x1c)
    	ENOSR           = syscall.Errno(0x76)
    	ENOSTR          = syscall.Errno(0x7b)
    	ENOSYS          = syscall.Errno(0x6d)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x4c)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x11)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K 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/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	ENOMSG          = syscall.Errno(0x23)
    	ENOPROTOOPT     = syscall.Errno(0x3d)
    	ENOSPC          = syscall.Errno(0x1c)
    	ENOSR           = syscall.Errno(0x76)
    	ENOSTR          = syscall.Errno(0x7b)
    	ENOSYS          = syscall.Errno(0x6d)
    	ENOTBLK         = syscall.Errno(0xf)
    	ENOTCONN        = syscall.Errno(0x4c)
    	ENOTDIR         = syscall.Errno(0x14)
    	ENOTEMPTY       = syscall.Errno(0x11)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  9. 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)
  10. src/os/os_unix_test.go

    	// changing the group id. First try our current group.
    	gid := Getgid()
    	t.Log("gid:", gid)
    	if err = Lchown(linkname, -1, gid); err != nil {
    		if err, ok := err.(*PathError); ok && err.Err == syscall.ENOSYS {
    			t.Skip("lchown is unavailable")
    		}
    		t.Fatalf("lchown %s -1 %d: %s", linkname, gid, err)
    	}
    	sys := dir.Sys().(*syscall.Stat_t)
    	checkUidGid(t, linkname, int(sys.Uid), gid)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top