Commit a641514d by Jeff Sturm Committed by Jeff Sturm

* java/nat/natPlainSocketImpl.cc (write): Abort loop on error.

From-SVN: r51230
parent bbaa9790
2002-03-23 Jeff Sturm <jsturm@one-point.com>
* java/nat/natPlainSocketImpl.cc (write): Abort loop on error.
2002-03-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* posix-threads.cc (_Jv_ThreadSelf_out_of_line): Use write_barrier,
......
......@@ -450,6 +450,7 @@ java::net::PlainSocketImpl::write(jint b)
// Some errors should not cause exceptions.
if (errno != ENOTCONN && errno != ECONNRESET && errno != EBADF)
throw new java::io::IOException (JvNewStringUTF (strerror (errno)));
break;
}
}
}
......@@ -481,6 +482,7 @@ java::net::PlainSocketImpl::write(jbyteArray b, jint offset, jint len)
// Some errors should not cause exceptions.
if (errno != ENOTCONN && errno != ECONNRESET && errno != EBADF)
throw new java::io::IOException (JvNewStringUTF (strerror (errno)));
break;
}
written += r;
len -= r;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment