Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for netpollQueueTimer (0.12 sec)

  1. src/runtime/netpoll_windows.go

    			throw("runtime: netpoll failed")
    		}
    	}
    	return toRun, delta
    }
    
    // netpollQueueTimer queues a timer to wake up the poller after the given delay.
    // It returns true if the timer expired during this call.
    func netpollQueueTimer(delay int64) (signaled bool) {
    	const (
    		STATUS_SUCCESS   = 0x00000000
    		STATUS_PENDING   = 0x00000103
    		STATUS_CANCELLED = 0xC0000120
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top