Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runtime_pollReset (0.18 sec)

  1. src/internal/poll/fd_poll_runtime.go

    func runtime_pollServerInit()
    func runtime_pollOpen(fd uintptr) (uintptr, int)
    func runtime_pollClose(ctx uintptr)
    func runtime_pollWait(ctx uintptr, mode int) int
    func runtime_pollWaitCanceled(ctx uintptr, mode int)
    func runtime_pollReset(ctx uintptr, mode int) int
    func runtime_pollSetDeadline(ctx uintptr, d int64, mode int)
    func runtime_pollUnblock(ctx uintptr)
    func runtime_isPollServerDescriptor(fd uintptr) bool
    
    type pollDesc struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/runtime/netpoll.go

    	pd.link = c.first
    	c.first = pd
    	unlock(&c.lock)
    }
    
    // poll_runtime_pollReset, which is internal/poll.runtime_pollReset,
    // prepares a descriptor for polling in mode, which is 'r' or 'w'.
    // This returns an error code; the codes are defined above.
    //
    //go:linkname poll_runtime_pollReset internal/poll.runtime_pollReset
    func poll_runtime_pollReset(pd *pollDesc, mode int) int {
    	errcode := netpollcheckerr(pd, int32(mode))
    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