Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
6baadb1f
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看板
提交
6baadb1f
编写于
6月 06, 2013
作者:
D
dcubed
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
e73d3ff8
98c2737c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
3 deletion
+13
-3
src/os/bsd/vm/os_bsd.cpp
src/os/bsd/vm/os_bsd.cpp
+13
-0
src/share/vm/runtime/thread.hpp
src/share/vm/runtime/thread.hpp
+0
-3
未找到文件。
src/os/bsd/vm/os_bsd.cpp
浏览文件 @
6baadb1f
...
@@ -3030,6 +3030,19 @@ void os::Bsd::set_signal_handler(int sig, bool set_installed) {
...
@@ -3030,6 +3030,19 @@ void os::Bsd::set_signal_handler(int sig, bool set_installed) {
sigAct
.
sa_sigaction
=
signalHandler
;
sigAct
.
sa_sigaction
=
signalHandler
;
sigAct
.
sa_flags
=
SA_SIGINFO
|
SA_RESTART
;
sigAct
.
sa_flags
=
SA_SIGINFO
|
SA_RESTART
;
}
}
#if __APPLE__
// Needed for main thread as XNU (Mac OS X kernel) will only deliver SIGSEGV
// (which starts as SIGBUS) on main thread with faulting address inside "stack+guard pages"
// if the signal handler declares it will handle it on alternate stack.
// Notice we only declare we will handle it on alt stack, but we are not
// actually going to use real alt stack - this is just a workaround.
// Please see ux_exception.c, method catch_mach_exception_raise for details
// link http://www.opensource.apple.com/source/xnu/xnu-2050.18.24/bsd/uxkern/ux_exception.c
if
(
sig
==
SIGSEGV
)
{
sigAct
.
sa_flags
|=
SA_ONSTACK
;
}
#endif
// Save flags, which are set by ours
// Save flags, which are set by ours
assert
(
sig
>
0
&&
sig
<
MAXSIGNUM
,
"vm signal out of expected range"
);
assert
(
sig
>
0
&&
sig
<
MAXSIGNUM
,
"vm signal out of expected range"
);
sigflags
[
sig
]
=
sigAct
.
sa_flags
;
sigflags
[
sig
]
=
sigAct
.
sa_flags
;
...
...
src/share/vm/runtime/thread.hpp
浏览文件 @
6baadb1f
...
@@ -638,9 +638,6 @@ public:
...
@@ -638,9 +638,6 @@ public:
jint
_hashStateZ
;
jint
_hashStateZ
;
void
*
_schedctl
;
void
*
_schedctl
;
intptr_t
_ScratchA
,
_ScratchB
;
// Scratch locations for fast-path sync code
static
ByteSize
ScratchA_offset
()
{
return
byte_offset_of
(
Thread
,
_ScratchA
);
}
static
ByteSize
ScratchB_offset
()
{
return
byte_offset_of
(
Thread
,
_ScratchB
);
}
volatile
jint
rng
[
4
]
;
// RNG for spin loop
volatile
jint
rng
[
4
]
;
// RNG for spin loop
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录