var runtime.kq
11 uses
runtime (current package)
netpoll_kqueue.go#L17: kq int32 = -1
netpoll_kqueue.go#L25: kq = kqueue()
netpoll_kqueue.go#L26: if kq < 0 {
netpoll_kqueue.go#L27: println("runtime: kqueue failed with", -kq)
netpoll_kqueue.go#L30: closeonexec(kq)
netpoll_kqueue.go#L41: n := kevent(kq, &ev, 1, nil, 0, nil)
netpoll_kqueue.go#L51: return fd == uintptr(kq) || fd == netpollBreakRd || fd == netpollBreakWr
netpoll_kqueue.go#L67: n := kevent(kq, &ev[0], 2, nil, 0, nil)
netpoll_kqueue.go#L108: if kq == -1 {
netpoll_kqueue.go#L127: n := kevent(kq, nil, 0, &events[0], int32(len(events)), tp)
netpoll_kqueue.go#L130: println("runtime: kevent on fd", kq, "failed with", -n)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |