RE: {Spam?} [Ganglia-developers] Re: [Ganglia-general] Early termination of XML stream from a windows based agent.

2006-02-13 Thread Richard.Grevis
Developers Subject: Re: {Spam?} [Ganglia-developers] Re: [Ganglia-general] Early termination of XML stream from a windows based agent. Jason, Yes, my patch is the most basic kind of work around. I looked at the apr code and saw that the code implied that EAGAIN was gmond's responsibility. I

Re: {Spam?} [Ganglia-developers] Re: [Ganglia-general] Early termination of XML stream from a windows based agent.

2006-02-10 Thread Ian Cunningham
Jason, Yes, my patch is the most basic kind of work around. I looked at the apr code and saw that the code implied that EAGAIN was gmond's responsibility. I don't understand socket buffers or 0_NONBLOCK so I am no help there. I do not know why it is happening. My best guess is there is some

Re: {Spam?} [Ganglia-developers] Re: [Ganglia-general] Early termination of XML stream from a windows based agent.

2006-02-10 Thread Jason A. Smith
Hi Ian, Your bug report & patch is basically to work around EAGAIN returned from socket write calls, correct? EAGAIN is returned basically when the socket is set to O_NONBLOCK and you have attempted a read/write on the socket when it is not ready for that operation. The error simply means try ag