func (pd *pollDesc) Evict() bool { pd.closing = true if pd.fd != nil { syscall.StopIO(pd.fd.sysfd) } return false }
func (pd *pollDesc) evict() { pd.closing = true if pd.fd != nil { syscall.StopIO(pd.fd.sysfd) runtime.KeepAlive(pd.fd) } }
func (pd *pollDesc) Evict() { pd.closing = true if pd.fd != nil { syscall.StopIO(pd.fd.sysfd) } }