From: Mikio Hara Date: Wed, 24 Jul 2013 08:48:13 +0000 (+0900) Subject: runtime: fix throw message in netpoll X-Git-Tag: go1.2rc2~958 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a0935cc97983c3d3e4b2be896ecc0d92572a02c0;p=gostls13.git runtime: fix throw message in netpoll R=dvyukov, r CC=golang-dev https://golang.org/cl/11761043 --- diff --git a/src/pkg/runtime/netpoll.goc b/src/pkg/runtime/netpoll.goc index 66557cc238..2e855556c3 100644 --- a/src/pkg/runtime/netpoll.goc +++ b/src/pkg/runtime/netpoll.goc @@ -253,7 +253,7 @@ netpollblock(PollDesc *pd, int32 mode) return true; } if(*gpp != nil) - runtime·throw("epoll: double wait"); + runtime·throw("netpollblock: double wait"); *gpp = g; runtime·park(runtime·unlock, &pd->Lock, "IO wait"); runtime·lock(pd);