Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
7ea73c94
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
7ea73c94
编写于
3月 04, 2014
作者:
C
chegar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8036584: Review comments from 8035897
Reviewed-by: alanb
上级
fc8f4ce9
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
29 addition
and
29 deletion
+29
-29
src/solaris/native/java/net/PlainDatagramSocketImpl.c
src/solaris/native/java/net/PlainDatagramSocketImpl.c
+18
-14
src/solaris/native/java/net/PlainSocketImpl.c
src/solaris/native/java/net/PlainSocketImpl.c
+4
-3
src/solaris/native/java/net/SocketInputStream.c
src/solaris/native/java/net/SocketInputStream.c
+4
-4
src/solaris/native/java/net/bsd_close.c
src/solaris/native/java/net/bsd_close.c
+2
-5
src/solaris/native/java/net/linux_close.c
src/solaris/native/java/net/linux_close.c
+1
-3
未找到文件。
src/solaris/native/java/net/PlainDatagramSocketImpl.c
浏览文件 @
7ea73c94
...
...
@@ -509,8 +509,7 @@ Java_java_net_PlainDatagramSocketImpl_peek(JNIEnv *env, jobject this,
JNU_ThrowNullPointerException
(
env
,
"Null address in peek()"
);
}
if
(
timeout
)
{
int
ret
=
NET_Timeout
(
env
,
fd
,
timeout
);
JNU_CHECK_EXCEPTION_RETURN
(
env
,
-
1
);
int
ret
=
NET_Timeout
(
fd
,
timeout
);
if
(
ret
==
0
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketTimeoutException"
,
"Peek timed out"
);
...
...
@@ -518,6 +517,8 @@ Java_java_net_PlainDatagramSocketImpl_peek(JNIEnv *env, jobject this,
}
else
if
(
ret
==
JVM_IO_ERR
)
{
if
(
errno
==
EBADF
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
}
else
if
(
errno
==
ENOMEM
)
{
JNU_ThrowOutOfMemoryError
(
env
,
"NET_Timeout native heap allocation failed"
);
}
else
{
NET_ThrowByNameWithLastError
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Peek failed"
);
}
...
...
@@ -612,22 +613,24 @@ Java_java_net_PlainDatagramSocketImpl_peekData(JNIEnv *env, jobject this,
packetBufferOffset
=
(
*
env
)
->
GetIntField
(
env
,
packet
,
dp_offsetID
);
packetBufferLen
=
(
*
env
)
->
GetIntField
(
env
,
packet
,
dp_bufLengthID
);
if
(
timeout
)
{
int
ret
=
NET_Timeout
(
env
,
fd
,
timeout
);
JNU_CHECK_EXCEPTION_RETURN
(
env
,
-
1
);
int
ret
=
NET_Timeout
(
fd
,
timeout
);
if
(
ret
==
0
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketTimeoutException"
,
"Receive timed out"
);
return
-
1
;
}
else
if
(
ret
==
JVM_IO_ERR
)
{
if
(
errno
==
ENOMEM
)
{
JNU_ThrowOutOfMemoryError
(
env
,
"NET_Timeout native heap allocation failed"
);
#ifdef __linux__
if
(
errno
==
EBADF
)
{
}
else
if
(
errno
==
EBADF
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
}
else
{
NET_ThrowByNameWithLastError
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Receive failed"
);
}
#else
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
}
else
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
#endif
}
return
-
1
;
}
else
if
(
ret
==
JVM_IO_INTR
)
{
JNU_ThrowByName
(
env
,
JNU_JAVAIOPKG
"InterruptedIOException"
,
...
...
@@ -831,23 +834,24 @@ Java_java_net_PlainDatagramSocketImpl_receive0(JNIEnv *env, jobject this,
retry
=
JNI_FALSE
;
if
(
timeout
)
{
int
ret
=
NET_Timeout
(
env
,
fd
,
timeout
);
int
ret
=
NET_Timeout
(
fd
,
timeout
);
if
(
ret
<=
0
)
{
if
((
*
env
)
->
ExceptionCheck
(
env
))
{
// fall-through, to potentially free, then return
}
else
if
(
ret
==
0
)
{
if
(
ret
==
0
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketTimeoutException"
,
"Receive timed out"
);
}
else
if
(
ret
==
JVM_IO_ERR
)
{
if
(
errno
==
ENOMEM
)
{
JNU_ThrowOutOfMemoryError
(
env
,
"NET_Timeout native heap allocation failed"
);
#ifdef __linux__
if
(
errno
==
EBADF
)
{
}
else
if
(
errno
==
EBADF
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
}
else
{
NET_ThrowByNameWithLastError
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Receive failed"
);
}
#else
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
}
else
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
#endif
}
}
else
if
(
ret
==
JVM_IO_INTR
)
{
JNU_ThrowByName
(
env
,
JNU_JAVAIOPKG
"InterruptedIOException"
,
"operation interrupted"
);
...
...
src/solaris/native/java/net/PlainSocketImpl.c
浏览文件 @
7ea73c94
...
...
@@ -704,11 +704,10 @@ Java_java_net_PlainSocketImpl_socketAccept(JNIEnv *env, jobject this,
/* passing a timeout of 0 to poll will return immediately,
but in the case of ServerSocket 0 means infinite. */
if
(
timeout
<=
0
)
{
ret
=
NET_Timeout
(
env
,
fd
,
-
1
);
ret
=
NET_Timeout
(
fd
,
-
1
);
}
else
{
ret
=
NET_Timeout
(
env
,
fd
,
timeout
);
ret
=
NET_Timeout
(
fd
,
timeout
);
}
JNU_CHECK_EXCEPTION
(
env
);
if
(
ret
==
0
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketTimeoutException"
,
"Accept timed out"
);
...
...
@@ -716,6 +715,8 @@ Java_java_net_PlainSocketImpl_socketAccept(JNIEnv *env, jobject this,
}
else
if
(
ret
==
JVM_IO_ERR
)
{
if
(
errno
==
EBADF
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
}
else
if
(
errno
==
ENOMEM
)
{
JNU_ThrowOutOfMemoryError
(
env
,
"NET_Timeout native heap allocation failed"
);
}
else
{
NET_ThrowByNameWithLastError
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Accept failed"
);
}
...
...
src/solaris/native/java/net/SocketInputStream.c
浏览文件 @
7ea73c94
...
...
@@ -100,16 +100,16 @@ Java_java_net_SocketInputStream_socketRead0(JNIEnv *env, jobject this,
}
if
(
timeout
)
{
nread
=
NET_Timeout
(
env
,
fd
,
timeout
);
nread
=
NET_Timeout
(
fd
,
timeout
);
if
(
nread
<=
0
)
{
if
((
*
env
)
->
ExceptionCheck
(
env
))
{
// fall-through, to potentially free, then return
}
else
if
(
nread
==
0
)
{
if
(
nread
==
0
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketTimeoutException"
,
"Read timed out"
);
}
else
if
(
nread
==
JVM_IO_ERR
)
{
if
(
errno
==
EBADF
)
{
JNU_ThrowByName
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"Socket closed"
);
}
else
if
(
errno
==
ENOMEM
)
{
JNU_ThrowOutOfMemoryError
(
env
,
"NET_Timeout native heap allocation failed"
);
}
else
{
NET_ThrowByNameWithLastError
(
env
,
JNU_JAVANETPKG
"SocketException"
,
"select/poll failed"
);
...
...
src/solaris/native/java/net/bsd_close.c
浏览文件 @
7ea73c94
...
...
@@ -38,8 +38,6 @@
#include <errno.h>
#include <sys/poll.h>
#include "jni_util.h"
/*
* Stack allocated by thread when doing blocking operation
*/
...
...
@@ -346,7 +344,7 @@ int NET_Select(int s, fd_set *readfds, fd_set *writefds,
* Auto restarts with adjusted timeout if interrupted by
* signal other than our wakeup signal.
*/
int
NET_Timeout
(
JNIEnv
*
env
,
int
s
,
long
timeout
)
{
int
NET_Timeout
(
int
s
,
long
timeout
)
{
long
prevtime
=
0
,
newtime
;
struct
timeval
t
,
*
tp
=
&
t
;
fd_set
fds
;
...
...
@@ -389,8 +387,7 @@ int NET_Timeout(JNIEnv *env, int s, long timeout) {
int
length
=
(
howmany
(
s
+
1
,
NFDBITS
))
*
sizeof
(
int
);
fdsp
=
(
fd_set
*
)
calloc
(
1
,
length
);
if
(
fdsp
==
NULL
)
{
JNU_ThrowOutOfMemoryError
(
env
,
"NET_Select native heap allocation failed"
);
return
0
;
return
-
1
;
// errno will be set to ENOMEM
}
allocated
=
1
;
}
...
...
src/solaris/native/java/net/linux_close.c
浏览文件 @
7ea73c94
...
...
@@ -36,8 +36,6 @@
#include <errno.h>
#include <sys/poll.h>
#include "jni.h"
/*
* Stack allocated by thread when doing blocking operation
*/
...
...
@@ -326,7 +324,7 @@ int NET_Select(int s, fd_set *readfds, fd_set *writefds,
* Auto restarts with adjusted timeout if interrupted by
* signal other than our wakeup signal.
*/
int
NET_Timeout
(
JNIEnv
*
unused
,
int
s
,
long
timeout
)
{
int
NET_Timeout
(
int
s
,
long
timeout
)
{
long
prevtime
=
0
,
newtime
;
struct
timeval
t
;
fdEntry_t
*
fdEntry
=
getFdEntry
(
s
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录