Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell11
提交
27fe9c73
D
dragonwell11
项目概览
openanolis
/
dragonwell11
通知
7
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell11
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
27fe9c73
编写于
11月 18, 2011
作者:
W
weijun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7077172: KerberosTime does not take into account system clock adjustement
Reviewed-by: valeriep
上级
7d661576
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
18 addition
and
5 deletion
+18
-5
jdk/src/share/classes/sun/security/krb5/internal/KerberosTime.java
...hare/classes/sun/security/krb5/internal/KerberosTime.java
+18
-5
未找到文件。
jdk/src/share/classes/sun/security/krb5/internal/KerberosTime.java
浏览文件 @
27fe9c73
...
@@ -68,8 +68,8 @@ public class KerberosTime implements Cloneable {
...
@@ -68,8 +68,8 @@ public class KerberosTime implements Cloneable {
private
int
microSeconds
;
// the last three digits of the microsecond value
private
int
microSeconds
;
// the last three digits of the microsecond value
// The time when this class is loaded. Used in setNow()
// The time when this class is loaded. Used in setNow()
private
static
final
long
initMilli
=
System
.
currentTimeMillis
();
private
static
long
initMilli
=
System
.
currentTimeMillis
();
private
static
final
long
initMicro
=
System
.
nanoTime
()
/
1000
;
private
static
long
initMicro
=
System
.
nanoTime
()
/
1000
;
private
static
long
syncTime
;
private
static
long
syncTime
;
private
static
boolean
DEBUG
=
Krb5
.
DEBUG
;
private
static
boolean
DEBUG
=
Krb5
.
DEBUG
;
...
@@ -212,9 +212,22 @@ public class KerberosTime implements Cloneable {
...
@@ -212,9 +212,22 @@ public class KerberosTime implements Cloneable {
}
}
public
void
setNow
()
{
public
void
setNow
()
{
long
microElapsed
=
System
.
nanoTime
()
/
1000
-
initMicro
;
long
newMilli
=
System
.
currentTimeMillis
();
setTime
(
initMilli
+
microElapsed
/
1000
);
long
newMicro
=
System
.
nanoTime
()
/
1000
;
microSeconds
=
(
int
)(
microElapsed
%
1000
);
long
microElapsed
=
newMicro
-
initMicro
;
long
calcMilli
=
initMilli
+
microElapsed
/
1000
;
if
(
calcMilli
-
newMilli
>
100
||
newMilli
-
calcMilli
>
100
)
{
if
(
DEBUG
)
{
System
.
out
.
println
(
"System time adjusted"
);
}
initMilli
=
newMilli
;
initMicro
=
newMicro
;
setTime
(
newMilli
);
microSeconds
=
0
;
}
else
{
setTime
(
calcMilli
);
microSeconds
=
(
int
)(
microElapsed
%
1000
);
}
}
}
public
int
getMicroSeconds
()
{
public
int
getMicroSeconds
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录