Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
bae21de3
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看板
提交
bae21de3
编写于
6月 13, 2013
作者:
I
igerasim
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7181748: java/lang/ThreadGroup/Suspend.java test fails intermittently
Reviewed-by: chegar, dholmes
上级
345ff4eb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
33 addition
and
25 deletion
+33
-25
test/java/lang/ThreadGroup/Suspend.java
test/java/lang/ThreadGroup/Suspend.java
+33
-25
未找到文件。
test/java/lang/ThreadGroup/Suspend.java
浏览文件 @
bae21de3
/*
* Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1999,
2013
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
...
...
@@ -23,47 +23,55 @@
/**
* @test
* @bug 4176355
* @bug 4176355
7181748
* @summary Suspending a ThreadGroup that contains the current thread has
* unpredictable results.
*/
public
class
Suspend
implements
Runnable
{
private
static
Thread
first
=
null
;
private
static
Thread
second
=
null
;
private
static
ThreadGroup
group
=
new
ThreadGroup
(
""
);
private
static
int
count
=
0
;
Suspend
()
{
Thread
thread
=
new
Thread
(
group
,
this
);
if
(
first
==
null
)
first
=
thread
;
else
second
=
thread
;
thread
.
start
();
}
private
static
volatile
int
count
=
0
;
private
static
final
ThreadGroup
group
=
new
ThreadGroup
(
""
);
private
static
final
Thread
first
=
new
Thread
(
group
,
new
Suspend
());
private
static
final
Thread
second
=
new
Thread
(
group
,
new
Suspend
());
public
void
run
()
{
while
(
true
)
{
try
{
Thread
.
sleep
(
1000
);
// Give other thread a chance to start
if
(
Thread
.
currentThread
()
==
first
)
group
.
suspend
();
else
Thread
.
sleep
(
100
);
if
(
Thread
.
currentThread
()
==
first
)
{
if
(
second
.
isAlive
())
{
group
.
suspend
();
}
}
else
{
count
++;
}
catch
(
InterruptedException
e
){
}
}
catch
(
InterruptedException
e
)
{
}
}
}
public
static
void
main
(
String
[]
args
)
throws
Exception
{
for
(
int
i
=
0
;
i
<
2
;
i
++)
new
Suspend
();
Thread
.
sleep
(
3000
);
// Launch two threads as part of the same thread group
first
.
start
();
second
.
start
();
// Wait for the thread group suspend to be issued
while
(!
first
.
isAlive
()
||
!
second
.
isAlive
())
{
Thread
.
sleep
(
100
);
}
Thread
.
sleep
(
1000
);
// Suppose, the thread group is now suspended
count
=
0
;
Thread
.
sleep
(
1000
);
// Increment of the count indicates that the second thread is still running
boolean
failed
=
(
count
>
1
);
first
.
stop
();
second
.
stop
();
if
(
failed
)
first
.
stop
();
second
.
stop
();
if
(
failed
)
{
throw
new
RuntimeException
(
"Failure."
);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录