jdk/src/java.base/share/classes/java/lang/ref/Finalizer.java
author chegar
Tue, 02 Feb 2016 08:59:52 +0000
changeset 35641 da165fd9c886
parent 34882 ce2a8ec851c1
child 36511 9d0388c6b336
permissions -rw-r--r--
8148117: Move sun.misc.Cleaner to jdk.internal.ref Reviewed-by: alanb, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
32100
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
     2
 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang.ref;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.AccessController;
32834
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 32100
diff changeset
    30
import jdk.internal.misc.JavaLangAccess;
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 32100
diff changeset
    31
import jdk.internal.misc.SharedSecrets;
34882
ce2a8ec851c1 8145544: Move sun.misc.VM to jdk.internal.misc
chegar
parents: 34716
diff changeset
    32
import jdk.internal.misc.VM;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 16875
diff changeset
    34
final class Finalizer extends FinalReference<Object> { /* Package-private; must be in
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 16875
diff changeset
    35
                                                          same package as the Reference
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 16875
diff changeset
    36
                                                          class */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 16875
diff changeset
    38
    private static ReferenceQueue<Object> queue = new ReferenceQueue<>();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
    39
    private static Finalizer unfinalized = null;
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
    40
    private static final Object lock = new Object();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private Finalizer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
        next = null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        prev = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private boolean hasBeenFinalized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        return (next == this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private void add() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
            if (unfinalized != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                this.next = unfinalized;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
                unfinalized.prev = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            unfinalized = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            if (unfinalized == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                if (this.next != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                    unfinalized = this.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                    unfinalized = this.prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            if (this.next != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                this.next.prev = this.prev;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            if (this.prev != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                this.prev.next = this.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            this.next = this;   /* Indicates that this has been finalized */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            this.prev = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private Finalizer(Object finalizee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        super(finalizee, queue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        add();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
32100
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
    85
    static ReferenceQueue<Object> getQueue() {
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
    86
        return queue;
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
    87
    }
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
    88
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    /* Invoked by VM */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    static void register(Object finalizee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        new Finalizer(finalizee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
    94
    private void runFinalizer(JavaLangAccess jla) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            if (hasBeenFinalized()) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            Object finalizee = this.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            if (finalizee != null && !(finalizee instanceof java.lang.Enum)) {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   102
                jla.invokeFinalize(finalizee);
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   103
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                /* Clear stack slot containing this variable, to decrease
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                   the chances of false retention with a conservative GC */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                finalizee = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        } catch (Throwable x) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        super.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /* Create a privileged secondary finalizer thread in the system thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
       group for the given Runnable, and wait for it to complete.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
       This method is used by both runFinalization and runFinalizersOnExit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
       The former method invokes all pending finalizers, while the latter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
       invokes all uninvoked finalizers if on-exit finalization has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
       enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
       These two methods could have been implemented by offloading their work
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
       to the regular finalizer thread and waiting for that thread to finish.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
       The advantage of creating a fresh thread, however, is that it insulates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
       invokers of these methods from a stalled or deadlocked finalizer thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    private static void forkSecondaryFinalizer(final Runnable proc) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   126
        AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29919
diff changeset
   127
            new PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   128
                public Void run() {
27337
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   129
                    ThreadGroup tg = Thread.currentThread().getThreadGroup();
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   130
                    for (ThreadGroup tgn = tg;
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   131
                         tgn != null;
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   132
                         tg = tgn, tgn = tg.getParent());
34716
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32834
diff changeset
   133
                    Thread sft = new Thread(tg, proc, "Secondary finalizer", 0, false);
27337
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   134
                    sft.start();
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   135
                    try {
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   136
                        sft.join();
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   137
                    } catch (InterruptedException x) {
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   138
                        Thread.currentThread().interrupt();
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   139
                    }
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   140
                    return null;
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   141
                }});
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    /* Called by Runtime.runFinalization() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    static void runFinalization() {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   146
        if (!VM.isBooted()) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   147
            return;
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   148
        }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   149
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        forkSecondaryFinalizer(new Runnable() {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   151
            private volatile boolean running;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            public void run() {
27337
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   153
                // in case of recursive call to run()
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   154
                if (running)
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   155
                    return;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   156
                final JavaLangAccess jla = SharedSecrets.getJavaLangAccess();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   157
                running = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                    Finalizer f = (Finalizer)queue.poll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                    if (f == null) break;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   161
                    f.runFinalizer(jla);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /* Invoked by java.lang.Shutdown */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    static void runAllFinalizers() {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   169
        if (!VM.isBooted()) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   170
            return;
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   171
        }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   172
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        forkSecondaryFinalizer(new Runnable() {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   174
            private volatile boolean running;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            public void run() {
27337
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   176
                // in case of recursive call to run()
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   177
                if (running)
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   178
                    return;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   179
                final JavaLangAccess jla = SharedSecrets.getJavaLangAccess();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   180
                running = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                    Finalizer f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                    synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                        f = unfinalized;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                        if (f == null) break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                        unfinalized = f.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                    }
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   188
                    f.runFinalizer(jla);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                }}});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
34716
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32834
diff changeset
   192
    private static class FinalizerThread extends Thread {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   193
        private volatile boolean running;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        FinalizerThread(ThreadGroup g) {
34716
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32834
diff changeset
   195
            super(g, null, "Finalizer", 0, false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        public void run() {
27337
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   198
            // in case of recursive call to run()
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   199
            if (running)
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   200
                return;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   201
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   202
            // Finalizer thread starts before System.initializeSystemClass
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   203
            // is called.  Wait until JavaLangAccess is available
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   204
            while (!VM.isBooted()) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   205
                // delay until VM completes initialization
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   206
                try {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   207
                    VM.awaitBooted();
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   208
                } catch (InterruptedException x) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   209
                    // ignore and continue
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   210
                }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   211
            }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   212
            final JavaLangAccess jla = SharedSecrets.getJavaLangAccess();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   213
            running = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                    Finalizer f = (Finalizer)queue.remove();
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   217
                    f.runFinalizer(jla);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                } catch (InterruptedException x) {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   219
                    // ignore and continue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        ThreadGroup tg = Thread.currentThread().getThreadGroup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        for (ThreadGroup tgn = tg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
             tgn != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
             tg = tgn, tgn = tg.getParent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        Thread finalizer = new FinalizerThread(tg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        finalizer.setPriority(Thread.MAX_PRIORITY - 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        finalizer.setDaemon(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        finalizer.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
}