Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
a641514d
Commit
a641514d
authored
23 years ago
by
Jeff Sturm
Committed by
Jeff Sturm
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* java/nat/natPlainSocketImpl.cc (write): Abort loop on error.
From-SVN: r51230
parent
bbaa9790
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
libjava/ChangeLog
+4
-0
libjava/java/net/natPlainSocketImpl.cc
+2
-0
No files found.
libjava/ChangeLog
View file @
a641514d
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
,
...
...
This diff is collapsed.
Click to expand it.
libjava/java/net/natPlainSocketImpl.cc
View file @
a641514d
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment