jdk/src/java.base/share/classes/java/lang/ref/Finalizer.java
author chegar
Sun, 17 Aug 2014 15:54:13 +0100
changeset 25859 3317bb8137f4
parent 21628 jdk/src/share/classes/java/lang/ref/Finalizer.java@50fd58446d64
child 27337 89b967c599ce
permissions -rw-r--r--
8054834: Modular Source Code Reviewed-by: alanb, chegar, ihse, mduigou Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, magnus.ihse.bursie@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 16875
diff changeset
     2
 * Copyright (c) 1997, 2013, 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;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
    30
import sun.misc.JavaLangAccess;
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
    31
import sun.misc.SharedSecrets;
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
    32
import sun.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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    /* Invoked by VM */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    static void register(Object finalizee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        new Finalizer(finalizee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
    90
    private void runFinalizer(JavaLangAccess jla) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            if (hasBeenFinalized()) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            Object finalizee = this.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            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
    98
                jla.invokeFinalize(finalizee);
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
    99
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                /* Clear stack slot containing this variable, to decrease
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                   the chances of false retention with a conservative GC */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                finalizee = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        } catch (Throwable x) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        super.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /* Create a privileged secondary finalizer thread in the system thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
       group for the given Runnable, and wait for it to complete.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
       This method is used by both runFinalization and runFinalizersOnExit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
       The former method invokes all pending finalizers, while the latter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
       invokes all uninvoked finalizers if on-exit finalization has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
       enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
       These two methods could have been implemented by offloading their work
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
       to the regular finalizer thread and waiting for that thread to finish.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
       The advantage of creating a fresh thread, however, is that it insulates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
       invokers of these methods from a stalled or deadlocked finalizer thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    private static void forkSecondaryFinalizer(final Runnable proc) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   122
        AccessController.doPrivileged(
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   123
            new PrivilegedAction<Void>() {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   124
                public Void run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                ThreadGroup tg = Thread.currentThread().getThreadGroup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                for (ThreadGroup tgn = tg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                     tgn != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                     tg = tgn, tgn = tg.getParent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                Thread sft = new Thread(tg, proc, "Secondary finalizer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                sft.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                    sft.join();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                } catch (InterruptedException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                    /* Ignore */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                return null;
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   137
                }});
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /* Called by Runtime.runFinalization() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    static void runFinalization() {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   142
        if (!VM.isBooted()) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   143
            return;
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   144
        }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   145
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        forkSecondaryFinalizer(new Runnable() {
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
            public void run() {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   149
                if (running)
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   150
                    return;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   151
                final JavaLangAccess jla = SharedSecrets.getJavaLangAccess();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   152
                running = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                    Finalizer f = (Finalizer)queue.poll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                    if (f == null) break;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   156
                    f.runFinalizer(jla);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    /* Invoked by java.lang.Shutdown */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    static void runAllFinalizers() {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   164
        if (!VM.isBooted()) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   165
            return;
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   166
        }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   167
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        forkSecondaryFinalizer(new Runnable() {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   169
            private volatile boolean running;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            public void run() {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   171
                if (running)
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   172
                    return;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   173
                final JavaLangAccess jla = SharedSecrets.getJavaLangAccess();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   174
                running = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                    Finalizer f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                    synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                        f = unfinalized;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                        if (f == null) break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                        unfinalized = f.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                    }
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   182
                    f.runFinalizer(jla);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                }}});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    private static class FinalizerThread extends Thread {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   187
        private volatile boolean running;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        FinalizerThread(ThreadGroup g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            super(g, "Finalizer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        public void run() {
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   192
            if (running)
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   193
                return;
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   194
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   195
            // Finalizer thread starts before System.initializeSystemClass
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   196
            // 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
   197
            while (!VM.isBooted()) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   198
                // delay until VM completes initialization
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   199
                try {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   200
                    VM.awaitBooted();
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   201
                } catch (InterruptedException x) {
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   202
                    // ignore and continue
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   203
                }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   204
            }
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   205
            final JavaLangAccess jla = SharedSecrets.getJavaLangAccess();
16875
a29830a7e5b3 8003335: Better handling of Finalizer thread
chegar
parents: 5506
diff changeset
   206
            running = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                    Finalizer f = (Finalizer)queue.remove();
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   210
                    f.runFinalizer(jla);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
                } catch (InterruptedException x) {
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 19053
diff changeset
   212
                    // ignore and continue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        ThreadGroup tg = Thread.currentThread().getThreadGroup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        for (ThreadGroup tgn = tg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
             tgn != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
             tg = tgn, tgn = tg.getParent());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        Thread finalizer = new FinalizerThread(tg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        finalizer.setPriority(Thread.MAX_PRIORITY - 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        finalizer.setDaemon(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        finalizer.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
}