Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for EINVAL (0.11 sec)

  1. src/os/pidfd_linux.go

    		// pidfdFind. Return ECHILD for consistency with what the wait
    		// syscall would return.
    		return nil, NewSyscallError("wait", syscall.ECHILD)
    	case statusReleased:
    		return nil, syscall.EINVAL
    	}
    	defer p.handleTransientRelease()
    
    	var (
    		info   unix.SiginfoChild
    		rusage syscall.Rusage
    		e      syscall.Errno
    	)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. internal/http/listener.go

    	select {
    	case result, ok := <-listener.acceptCh:
    		if ok {
    			return result.conn, result.err
    		}
    	case <-listener.ctx.Done():
    	}
    	return nil, syscall.EINVAL
    }
    
    // Close - closes underneath all TCP listeners.
    func (listener *httpListener) Close() (err error) {
    	listener.ctxCanceler()
    
    	for i := range listener.listeners {
    		listener.listeners[i].Close()
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/os/removeall_at.go

    		return nil
    	}
    
    	// The rmdir system call does not permit removing ".",
    	// so we don't permit it either.
    	if endsWithDot(path) {
    		return &PathError{Op: "RemoveAll", Path: path, Err: syscall.EINVAL}
    	}
    
    	// Simple case: if Remove works, we're done.
    	err := Remove(path)
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// RemoveAll recurses by deleting the path base from
    	// its parent directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/internal/poll/fd_wasip1.go

    		// descriptor to scan the directory again.
    		if offset == 0 && whence == 0 {
    			fd.Dircookie = 0
    			return 0, nil
    		} else {
    			return 0, syscall.EINVAL
    		}
    	}
    
    	return syscall.Seek(fd.Sysfd, offset, whence)
    }
    
    // https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md#-dirent-record
    const sizeOfDirent = 24
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/syscall/exec_linux_test.go

    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		UseCgroupFD: true,
    		CgroupFD:    fd,
    	}
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		if testenv.SyscallIsNotSupported(err) && !errors.Is(err, syscall.EINVAL) {
    			// Can be one of:
    			// - clone3 not supported (old kernel);
    			// - clone3 not allowed (by e.g. seccomp);
    			// - lack of CAP_SYS_ADMIN.
    			t.Skipf("clone3 with CLONE_INTO_CGROUP not available: %v", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/test.go

    	}
    
    	_, e := C.g()
    	if e != syscall.E2BIG {
    		t.Errorf("got %q, expect %q", e, syscall.E2BIG)
    	}
    	_, e = C.g2(C.EINVAL, C._expA, C._expB, C._expC, C._expD)
    	if e != syscall.EINVAL {
    		t.Errorf("got %q, expect %q", e, syscall.EINVAL)
    	}
    }
    
    // issue 3945
    
    func testPrintf(t *testing.T) {
    	C.say()
    }
    
    // issue 4054
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // IsRestricted reports whether the access token t is a restricted token.
    func (t Token) IsRestricted() (isRestricted bool, err error) {
    	isRestricted, err = isTokenRestricted(t)
    	if !isRestricted && err == syscall.EINVAL {
    		// If err is EINVAL, this returned ERROR_SUCCESS indicating a non-restricted token.
    		err = nil
    	}
    	return
    }
    
    const (
    	WTS_CONSOLE_CONNECT        = 0x1
    	WTS_CONSOLE_DISCONNECT     = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/syscall/syscall_darwin.go

    func PtraceDetach(pid int) (err error) { return ptrace(PT_DETACH, pid, 0, 0) }
    
    //sysnb pipe(p *[2]int32) (err error)
    
    func Pipe(p []int) (err error) {
    	if len(p) != 2 {
    		return EINVAL
    	}
    	var q [2]int32
    	err = pipe(&q)
    	if err == nil {
    		p[0] = int(q[0])
    		p[1] = int(q[1])
    	}
    	return
    }
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    	var _p0 unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/os/exec.go

    	// can not call Release, as Wait does not set p.Pid = -1.
    	//
    	// On Unix and Plan 9, calling Release a second time has no effect.
    	//
    	// On Windows, calling Release a second time returns EINVAL.
    	return p.release()
    }
    
    // Kill causes the [Process] to exit immediately. Kill does not wait until
    // the Process has actually exited. This only kills the Process itself,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{17, "EEXIST", "file exists"},
    	{18, "EXDEV", "invalid cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "too many open files in system"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "inappropriate ioctl for device"},
    	{26, "ETXTBSY", "text file busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top