Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
501d313d
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看板
提交
501d313d
编写于
2月 13, 2018
作者:
R
rwestberg
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8041626: Shutdown tracing event
Reviewed-by: dholmes, alanb, rriggs
上级
3e05da39
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
16 addition
and
2 deletion
+16
-2
make/mapfiles/libjava/mapfile-vers
make/mapfiles/libjava/mapfile-vers
+1
-0
src/share/classes/java/lang/Runtime.java
src/share/classes/java/lang/Runtime.java
+1
-0
src/share/classes/java/lang/Shutdown.java
src/share/classes/java/lang/Shutdown.java
+5
-1
src/share/javavm/export/jvm.h
src/share/javavm/export/jvm.h
+3
-0
src/share/native/java/lang/Shutdown.c
src/share/native/java/lang/Shutdown.c
+6
-1
未找到文件。
make/mapfiles/libjava/mapfile-vers
浏览文件 @
501d313d
...
...
@@ -205,6 +205,7 @@ SUNWprivate_1.1 {
Java_java_lang_SecurityManager_currentClassLoader0;
Java_java_lang_SecurityManager_currentLoadedClass0;
Java_java_lang_SecurityManager_getClassContext;
Java_java_lang_Shutdown_beforeHalt;
Java_java_lang_Shutdown_halt0;
Java_java_lang_String_intern;
Java_java_lang_System_identityHashCode;
...
...
src/share/classes/java/lang/Runtime.java
浏览文件 @
501d313d
...
...
@@ -272,6 +272,7 @@ public class Runtime {
if
(
sm
!=
null
)
{
sm
.
checkExit
(
status
);
}
Shutdown
.
beforeHalt
();
Shutdown
.
halt
(
status
);
}
...
...
src/share/classes/java/lang/Shutdown.java
浏览文件 @
501d313d
/*
* Copyright (c) 1999, 20
05
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1999, 20
18
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -130,6 +130,9 @@ class Shutdown {
}
}
/* Notify the VM that it's time to halt. */
static
native
void
beforeHalt
();
/* The halt method is synchronized on the halt lock
* to avoid corruption of the delete-on-shutdown file list.
* It invokes the true native halt method.
...
...
@@ -209,6 +212,7 @@ class Shutdown {
/* Synchronize on the class object, causing any other thread
* that attempts to initiate shutdown to stall indefinitely
*/
beforeHalt
();
sequence
();
halt
(
status
);
}
...
...
src/share/javavm/export/jvm.h
浏览文件 @
501d313d
...
...
@@ -131,6 +131,9 @@ JVM_CopySwapMemory(JNIEnv *env, jobject srcObj, jlong srcOffset,
JNIEXPORT
void
JNICALL
JVM_Exit
(
jint
code
);
JNIEXPORT
void
JNICALL
JVM_BeforeHalt
();
JNIEXPORT
void
JNICALL
JVM_Halt
(
jint
code
);
...
...
src/share/native/java/lang/Shutdown.c
浏览文件 @
501d313d
/*
* Copyright (c) 1999, 20
03
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1999, 20
18
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -29,6 +29,11 @@
#include "java_lang_Shutdown.h"
JNIEXPORT
void
JNICALL
Java_java_lang_Shutdown_beforeHalt
(
JNIEnv
*
env
,
jclass
ignored
)
{
JVM_BeforeHalt
();
}
JNIEXPORT
void
JNICALL
Java_java_lang_Shutdown_halt0
(
JNIEnv
*
env
,
jclass
ignored
,
jint
code
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录