Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for netpollopen (0.09 sec)

  1. src/runtime/netpoll_solaris.go

    	}
    
    	print("runtime: port_create failed (errno=", errno(), ")\n")
    	throw("runtime: netpollinit failed")
    }
    
    func netpollIsPollDescriptor(fd uintptr) bool {
    	return fd == uintptr(portfd)
    }
    
    func netpollopen(fd uintptr, pd *pollDesc) int32 {
    	lock(&pd.lock)
    	// We don't register for any specific type of events yet, that's
    	// netpollarm's job. We merely ensure we call port_associate before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/runtime/netpoll.go

    // A particular implementation (epoll/kqueue/port/AIX/Windows)
    // must define the following functions:
    //
    // func netpollinit()
    //     Initialize the poller. Only called once.
    //
    // func netpollopen(fd uintptr, pd *pollDesc) int32
    //     Arm edge-triggered notifications for fd. The pd argument is to pass
    //     back to netpollready when fd is ready. Return an errno value.
    //
    // func netpollclose(fd uintptr) int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top