Skip to content

Commit 28c112f

Browse files
committedJun 3, 2022
8287685: [BACKOUT] JDK-8287384 Speed up jdk.test.lib.util.ForceGC
Reviewed-by: dcubed
1 parent 34bb0a5 commit 28c112f

File tree

1 file changed

+13
-20
lines changed

1 file changed

+13
-20
lines changed
 

‎test/lib/jdk/test/lib/util/ForceGC.java

+13-20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -32,23 +32,21 @@
3232
* Utility class to invoke System.gc()
3333
*/
3434
public class ForceGC {
35-
private final static Cleaner cleaner = Cleaner.create();
36-
37-
private final CountDownLatch cleanerInvoked;
35+
private final CountDownLatch cleanerInvoked = new CountDownLatch(1);
36+
private final Cleaner cleaner = Cleaner.create();
3837
private Object o;
3938

4039
public ForceGC() {
4140
this.o = new Object();
42-
this.cleanerInvoked = new CountDownLatch(1);
43-
cleaner.register(o, cleanerInvoked::countDown);
41+
cleaner.register(o, () -> cleanerInvoked.countDown());
4442
}
4543

46-
private void doIt(int iter) {
44+
private void doit(int iter) {
4745
try {
48-
for (int i = 0; i < 100; i++) {
46+
for (int i = 0; i < 10; i++) {
4947
System.gc();
50-
System.out.println("doIt() iter: " + iter + ", gc " + i);
51-
if (cleanerInvoked.await(100L, TimeUnit.MILLISECONDS)) {
48+
System.out.println("doit() iter: " + iter + ", gc " + i);
49+
if (cleanerInvoked.await(1L, TimeUnit.SECONDS)) {
5250
return;
5351
}
5452
}
@@ -64,23 +62,18 @@ private void doIt(int iter) {
6462
* @param s boolean supplier
6563
* @return true if the {@code BooleanSupplier} returns true and false if
6664
* the predefined waiting time elapsed before the count reaches zero.
65+
* @throws InterruptedException if the current thread is interrupted while waiting
6766
*/
6867
public boolean await(BooleanSupplier s) {
6968
o = null; // Keep reference to Object until now, to ensure the Cleaner
7069
// doesn't count down the latch before await() is called.
71-
for (int i = 0; i < 1000; i++) {
72-
if (s.getAsBoolean()) {
73-
return true;
74-
}
75-
76-
doIt(i);
77-
try {
78-
Thread.sleep(10);
79-
} catch (InterruptedException e) {
70+
for (int i = 0; i < 10; i++) {
71+
if (s.getAsBoolean()) return true;
72+
doit(i);
73+
try { Thread.sleep(1000); } catch (InterruptedException e) {
8074
throw new AssertionError("unexpected interrupted sleep", e);
8175
}
8276
}
83-
8477
return false;
8578
}
8679
}

0 commit comments

Comments
 (0)
Please sign in to comment.