[cp-patches] Patch: fix OP_CONNECT selects

2005-12-26 Thread Anthony Green
We weren't properly recording OP_CONNECT events in our select routine. After coming up with this, I discovered that this is basically the same solution that Stanley Brown came up with over a year ago... http://gcc.gnu.org/ml/java/2004-09/msg00130.html 2005-12-26 Anthony Green [EMAIL

Re: [cp-patches] Patch: fix OP_CONNECT selects

2005-12-26 Thread Tom Tromey
Anthony == Anthony Green [EMAIL PROTECTED] writes: Anthony After coming up with this, I discovered that this is Anthony basically the same solution that Stanley Brown came up with Anthony over a year Anthony ago... http://gcc.gnu.org/ml/java/2004-09/msg00130.html I hate it when we miss a patch

Re: [cp-patches] Patch: fix OP_CONNECT selects

2005-12-26 Thread Anthony Green
On Mon, 2005-12-26 at 19:07 -0700, Tom Tromey wrote: This looks ok to me. Anthony +if ( ((SocketChannel)key.channel()).isConnected ()) Spacing here is wrong. Thanks. Applied with the following corrected patch... 2005-12-26 Anthony Green [EMAIL PROTECTED]