1
0
mirror of https://github.com/golang/go synced 2024-11-19 00:14:39 -07:00

runtime: fix solaris netpoll

TBR=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/141030043
This commit is contained in:
Dmitriy Vyukov 2014-09-04 11:34:01 +04:00
parent 29225211e1
commit 97fdfdb52c

View File

@ -273,7 +273,7 @@ func netpolllock(pd *pollDesc) {
} }
func netpollunlock(pd *pollDesc) { func netpollunlock(pd *pollDesc) {
lock(&pd.lock) unlock(&pd.lock)
} }
// make pd ready, newly runnable goroutines (if any) are returned in rg/wg // make pd ready, newly runnable goroutines (if any) are returned in rg/wg