Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
5421a803
D
dragonwell8_hotspot
项目概览
openanolis
/
dragonwell8_hotspot
通知
2
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_hotspot
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5421a803
编写于
2月 16, 2012
作者:
N
never
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7144318: GCLocker assert failure: assert(_needs_gc || SafepointSynchronize::is_at_safepoint(
Reviewed-by: kvn, twisti
上级
b62c22d3
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
15 addition
and
8 deletion
+15
-8
src/share/vm/memory/gcLocker.hpp
src/share/vm/memory/gcLocker.hpp
+15
-2
src/share/vm/memory/gcLocker.inline.hpp
src/share/vm/memory/gcLocker.inline.hpp
+0
-6
未找到文件。
src/share/vm/memory/gcLocker.hpp
浏览文件 @
5421a803
...
...
@@ -83,13 +83,26 @@ class GC_locker: public AllStatic {
static
void
jni_lock
(
JavaThread
*
thread
);
static
void
jni_unlock
(
JavaThread
*
thread
);
static
bool
is_active_internal
()
{
verify_critical_count
();
return
_lock_count
>
0
||
_jni_lock_count
>
0
;
}
public:
// Accessors
static
bool
is_active
();
static
bool
is_active
()
{
assert
(
_needs_gc
||
SafepointSynchronize
::
is_at_safepoint
(),
"only read at safepoint"
);
return
is_active_internal
();
}
static
bool
needs_gc
()
{
return
_needs_gc
;
}
// Shorthand
static
bool
is_active_and_needs_gc
()
{
return
needs_gc
()
&&
is_active
();
}
static
bool
is_active_and_needs_gc
()
{
// Use is_active_internal since _needs_gc can change from true to
// false outside of a safepoint, triggering the assert in
// is_active.
return
needs_gc
()
&&
is_active_internal
();
}
// In debug mode track the locking state at all times
static
void
increment_debug_jni_lock_count
()
{
...
...
src/share/vm/memory/gcLocker.inline.hpp
浏览文件 @
5421a803
...
...
@@ -27,12 +27,6 @@
#include "memory/gcLocker.hpp"
inline
bool
GC_locker
::
is_active
()
{
assert
(
_needs_gc
||
SafepointSynchronize
::
is_at_safepoint
(),
"only read at safepoint"
);
verify_critical_count
();
return
_lock_count
>
0
||
_jni_lock_count
>
0
;
}
inline
void
GC_locker
::
lock
()
{
// cast away volatile
Atomic
::
inc
(
&
_lock_count
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录