1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
32
32
* Utility class to invoke System.gc()
33
33
*/
34
34
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 ();
38
37
private Object o ;
39
38
40
39
public ForceGC () {
41
40
this .o = new Object ();
42
- this .cleanerInvoked = new CountDownLatch (1 );
43
- cleaner .register (o , cleanerInvoked ::countDown );
41
+ cleaner .register (o , () -> cleanerInvoked .countDown ());
44
42
}
45
43
46
- private void doIt (int iter ) {
44
+ private void doit (int iter ) {
47
45
try {
48
- for (int i = 0 ; i < 100 ; i ++) {
46
+ for (int i = 0 ; i < 10 ; i ++) {
49
47
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 )) {
52
50
return ;
53
51
}
54
52
}
@@ -64,23 +62,18 @@ private void doIt(int iter) {
64
62
* @param s boolean supplier
65
63
* @return true if the {@code BooleanSupplier} returns true and false if
66
64
* the predefined waiting time elapsed before the count reaches zero.
65
+ * @throws InterruptedException if the current thread is interrupted while waiting
67
66
*/
68
67
public boolean await (BooleanSupplier s ) {
69
68
o = null ; // Keep reference to Object until now, to ensure the Cleaner
70
69
// 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 ) {
80
74
throw new AssertionError ("unexpected interrupted sleep" , e );
81
75
}
82
76
}
83
-
84
77
return false ;
85
78
}
86
79
}
0 commit comments