src/java.base/share/classes/java/lang/ref/Finalizer.java
author mchung
Tue, 06 Nov 2018 10:01:16 -0800
changeset 52427 3c6aa484536c
parent 48942 a6c4b85163c1
permissions -rw-r--r--
8211122: Reduce the number of internal classes made accessible to jdk.unsupported Reviewed-by: alanb, dfuchs, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
     2
 * Copyright (c) 1997, 2018, 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;
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 48942
diff changeset
    30
import jdk.internal.access.JavaLangAccess;
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 48942
diff changeset
    31
import jdk.internal.access.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<>();
48903
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    39
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    40
    /** Head of doubly linked list of Finalizers awaiting finalization. */
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
    41
    private static Finalizer unfinalized = null;
48903
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    42
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    43
    /** Lock guarding access to unfinalized list. */
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
    44
    private static final Object lock = new Object();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
48903
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    46
    private Finalizer next, prev;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
48903
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    48
    private Finalizer(Object finalizee) {
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    49
        super(finalizee, queue);
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    50
        // push onto unfinalized
2
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
32100
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
    60
    static ReferenceQueue<Object> getQueue() {
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
    61
        return queue;
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
    62
    }
8a0db19f4e84 8059036: Implement Diagnostic Commands for heap and finalizerinfo
dsamersoff
parents: 29986
diff changeset
    63
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    /* Invoked by VM */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    static void register(Object finalizee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        new Finalizer(finalizee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
    69
    private void runFinalizer(JavaLangAccess jla) {
48903
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    70
        synchronized (lock) {
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    71
            if (this.next == this)      // already finalized
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    72
                return;
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    73
            // unlink from unfinalized
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    74
            if (unfinalized == this)
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    75
                unfinalized = this.next;
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    76
            else
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    77
                this.prev.next = this.next;
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    78
            if (this.next != null)
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    79
                this.next.prev = this.prev;
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    80
            this.prev = null;
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    81
            this.next = this;           // mark as finalized
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    82
        }
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
    83
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            Object finalizee = this.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            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
    87
                jla.invokeFinalize(finalizee);
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
    88
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
    89
                // Clear stack slot containing this variable, to decrease
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
    90
                // the chances of false retention with a conservative GC
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                finalizee = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        } catch (Throwable x) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        super.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /* Create a privileged secondary finalizer thread in the system thread
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
    98
     * group for the given Runnable, and wait for it to complete.
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
    99
     *
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
   100
     * This method is used by runFinalization.
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
   101
     *
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
   102
     * It could have been implemented by offloading the work to the
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
   103
     * regular finalizer thread and waiting for that thread to finish.
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
   104
     * The advantage of creating a fresh thread, however, is that it insulates
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
   105
     * invokers of that method from a stalled or deadlocked finalizer thread.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    private static void forkSecondaryFinalizer(final Runnable proc) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   108
        AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29919
diff changeset
   109
            new PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   110
                public Void run() {
27337
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   111
                    ThreadGroup tg = Thread.currentThread().getThreadGroup();
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   112
                    for (ThreadGroup tgn = tg;
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   113
                         tgn != null;
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   114
                         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
   115
                    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
   116
                    sft.start();
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   117
                    try {
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   118
                        sft.join();
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   119
                    } catch (InterruptedException x) {
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   120
                        Thread.currentThread().interrupt();
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   121
                    }
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   122
                    return null;
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   123
                }});
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    /* Called by Runtime.runFinalization() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    static void runFinalization() {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   128
        if (VM.initLevel() == 0) {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   129
            return;
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   130
        }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   131
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        forkSecondaryFinalizer(new Runnable() {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   133
            private volatile boolean running;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            public void run() {
27337
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   135
                // in case of recursive call to run()
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   136
                if (running)
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   137
                    return;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   138
                final JavaLangAccess jla = SharedSecrets.getJavaLangAccess();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   139
                running = true;
48903
d9fce53461a1 8197812: (ref) Data race in Finalizer
martin
parents: 47216
diff changeset
   140
                for (Finalizer f; (f = (Finalizer)queue.poll()) != null; )
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
   141
                    f.runFinalizer(jla);
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
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
34716
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32834
diff changeset
   146
    private static class FinalizerThread extends Thread {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   147
        private volatile boolean running;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        FinalizerThread(ThreadGroup g) {
34716
7477a052aecc 8056152: API to create Threads that do not inherit inheritable thread-local initial values
chegar
parents: 32834
diff changeset
   149
            super(g, null, "Finalizer", 0, false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        public void run() {
27337
89b967c599ce 4354680: Runtime.runFinalization() silently clears interrupted flag in the calling thread
smarks
parents: 25859
diff changeset
   152
            // in case of recursive call to run()
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   153
            if (running)
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   154
                return;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   155
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   156
            // Finalizer thread starts before System.initializeSystemClass
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   157
            // is called.  Wait until JavaLangAccess is available
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   158
            while (VM.initLevel() == 0) {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   159
                // delay until VM completes initialization
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   160
                try {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   161
                    VM.awaitInitLevel(1);
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   162
                } catch (InterruptedException x) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   163
                    // ignore and continue
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   164
                }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   165
            }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   166
            final JavaLangAccess jla = SharedSecrets.getJavaLangAccess();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   167
            running = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                    Finalizer f = (Finalizer)queue.remove();
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48903
diff changeset
   171
                    f.runFinalizer(jla);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                } catch (InterruptedException x) {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   173
                    // ignore and continue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        ThreadGroup tg = Thread.currentThread().getThreadGroup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        for (ThreadGroup tgn = tg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
             tgn != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
             tg = tgn, tgn = tg.getParent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        Thread finalizer = new FinalizerThread(tg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        finalizer.setPriority(Thread.MAX_PRIORITY - 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        finalizer.setDaemon(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        finalizer.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
}