Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 267 for syscalls (0.09 sec)

  1. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-syscall-steal-proc-simple.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 535 bytes
    - Viewed (0)
  3. src/internal/trace/testdata/tests/go122-create-syscall-reuse-thread-id.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 652 bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-syscall-steal-proc-gen-boundary.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 529 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	SIGBUS    = syscall.Signal(0xa)
    	SIGCHLD   = syscall.Signal(0x12)
    	SIGCLD    = syscall.Signal(0x12)
    	SIGCONT   = syscall.Signal(0x19)
    	SIGEMT    = syscall.Signal(0x7)
    	SIGIO     = syscall.Signal(0x16)
    	SIGPOLL   = syscall.Signal(0x16)
    	SIGPROF   = syscall.Signal(0x1d)
    	SIGPWR    = syscall.Signal(0x13)
    	SIGSTOP   = syscall.Signal(0x17)
    	SIGSYS    = syscall.Signal(0xc)
    	SIGTSTP   = syscall.Signal(0x18)
    	SIGTTIN   = syscall.Signal(0x1a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	SIGCONT   = syscall.Signal(0x12)
    	SIGIO     = syscall.Signal(0x1d)
    	SIGPOLL   = syscall.Signal(0x1d)
    	SIGPROF   = syscall.Signal(0x1b)
    	SIGPWR    = syscall.Signal(0x1e)
    	SIGSTKFLT = syscall.Signal(0x10)
    	SIGSTOP   = syscall.Signal(0x13)
    	SIGSYS    = syscall.Signal(0x1f)
    	SIGTSTP   = syscall.Signal(0x14)
    	SIGTTIN   = syscall.Signal(0x15)
    	SIGTTOU   = syscall.Signal(0x16)
    	SIGURG    = syscall.Signal(0x17)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. src/os/exec_windows.go

    	switch status {
    	case statusDone:
    		return ErrProcessDone
    	case statusReleased:
    		return syscall.EINVAL
    	}
    	defer p.handleTransientRelease()
    
    	if sig == Kill {
    		var terminationHandle syscall.Handle
    		e := syscall.DuplicateHandle(^syscall.Handle(0), syscall.Handle(handle), ^syscall.Handle(0), &terminationHandle, syscall.PROCESS_TERMINATE, false, 0)
    		if e != nil {
    			return NewSyscallError("DuplicateHandle", e)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/net/cgo_unix_syscall.go

    }
    
    func cgoNameinfoPTR(b []byte, sa *syscall.RawSockaddr, salen int) (int, error) {
    	gerrno, err := unix.Getnameinfo(sa, salen, &b[0], len(b), nil, 0, unix.NI_NAMEREQD)
    	return int(gerrno), err
    }
    
    func cgoSockaddrInet4(ip IP) *syscall.RawSockaddr {
    	sa := syscall.RawSockaddrInet4{Len: syscall.SizeofSockaddrInet4, Family: syscall.AF_INET}
    	copy(sa.Addr[:], ip)
    	return (*syscall.RawSockaddr)(unsafe.Pointer(&sa))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/runtime/netpoll_epoll.go

    func netpollopen(fd uintptr, pd *pollDesc) uintptr {
    	var ev syscall.EpollEvent
    	ev.Events = syscall.EPOLLIN | syscall.EPOLLOUT | syscall.EPOLLRDHUP | syscall.EPOLLET
    	tp := taggedPointerPack(unsafe.Pointer(pd), pd.fdseq.Load())
    	*(*taggedPointer)(unsafe.Pointer(&ev.Data)) = tp
    	return syscall.EpollCtl(epfd, syscall.EPOLL_CTL_ADD, int32(fd), &ev)
    }
    
    func netpollclose(fd uintptr) uintptr {
    	var ev syscall.EpollEvent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/internal/poll/fd_windows_test.go

    		t.Run(name, func(t *testing.T) {
    			h, err := syscall.CreateFile(syscall.StringToUTF16Ptr(name),
    				syscall.GENERIC_READ|syscall.GENERIC_WRITE,
    				0,
    				nil,
    				syscall.OPEN_EXISTING,
    				syscall.FILE_ATTRIBUTE_NORMAL|syscall.FILE_FLAG_OVERLAPPED,
    				0)
    			if err != nil {
    				if errno, ok := err.(syscall.Errno); ok {
    					switch errno {
    					case syscall.ERROR_FILE_NOT_FOUND,
    						syscall.ERROR_ACCESS_DENIED:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 08:33:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top