Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
087b1f9b
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看板
提交
087b1f9b
编写于
4月 07, 2011
作者:
J
jcoomes
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7034133: cleanup obsolete option handling
Reviewed-by: ysr, johnc, poonam
上级
6f87c7dd
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
15 addition
and
19 deletion
+15
-19
src/share/vm/runtime/arguments.cpp
src/share/vm/runtime/arguments.cpp
+15
-19
未找到文件。
src/share/vm/runtime/arguments.cpp
浏览文件 @
087b1f9b
...
...
@@ -799,26 +799,22 @@ bool Arguments::process_argument(const char* arg,
JDK_Version
since
=
JDK_Version
();
if
(
parse_argument
(
arg
,
origin
))
{
// do nothing
}
else
if
(
is_newly_obsolete
(
arg
,
&
since
))
{
enum
{
bufsize
=
256
};
char
buffer
[
bufsize
];
since
.
to_string
(
buffer
,
bufsize
);
jio_fprintf
(
defaultStream
::
error_stream
(),
"Warning: The flag %s has been EOL'd as of %s and will"
" be ignored
\n
"
,
arg
,
buffer
);
}
else
{
if
(
!
ignore_unrecognized
)
{
jio_fprintf
(
defaultStream
::
error_stream
(),
"Unrecognized VM option '%s'
\n
"
,
arg
);
// allow for commandline "commenting out" options like -XX:#+Verbose
if
(
strlen
(
arg
)
==
0
||
arg
[
0
]
!=
'#'
)
{
return
false
;
}
}
if
(
parse_argument
(
arg
,
origin
)
||
ignore_unrecognized
)
{
return
true
;
}
return
true
;
const
char
*
const
argname
=
*
arg
==
'+'
||
*
arg
==
'-'
?
arg
+
1
:
arg
;
if
(
is_newly_obsolete
(
arg
,
&
since
))
{
char
version
[
256
];
since
.
to_string
(
version
,
sizeof
(
version
));
warning
(
"ignoring option %s; support was removed in %s"
,
argname
,
version
);
return
true
;
}
jio_fprintf
(
defaultStream
::
error_stream
(),
"Unrecognized VM option '%s'
\n
"
,
argname
);
// allow for commandline "commenting out" options like -XX:#+Verbose
return
arg
[
0
]
==
'#'
;
}
bool
Arguments
::
process_settings_file
(
const
char
*
file_name
,
bool
should_exist
,
jboolean
ignore_unrecognized
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录