different protocols (http and two custom). I've been testing it for
awhile, and so far it's been working w/o problems. However, I just ran
into a situation where I stopped and restarted my program within the space
of a minute or so and it popped back with this error:
runtime: epollwait on fd -38 failed with 9
It's no clear to me what this signifies, and I was hoping someone here
could tell me -- I'm wondering if it implies I might be setting my servers
incorrectly. It appears to be coming from line 75 of
http://golang.org/src/pkg/runtime/netpoll_epoll.c, and I'm guessing 9
indicates an errno?
70 retry: 71 n = runtime·epollwait(epfd, events, nelem(events), waitms); 72 if(n < 0) { 73 if(n != -EINTR && n != lasterr) { 74 lasterr = n; 75 runtime·printf("runtime: epollwait on fd %d failed with %d\n", epfd, -n); 76 } 77 goto retry; 78 }
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.