/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test
* @bug 8010939
* @summary check for deadlock between findLogger() and drainLoggerRefQueueBounded()
* @author jim.gish@oracle.com
* @build DrainFindDeadlockTest
*/
/**
* This test is checking for a deadlock between
* LogManager$LoggerContext.findLogger() and
* LogManager.drainLoggerRefQueueBounded() (which could happen by calling
* Logger.getLogger() and LogManager.readConfiguration() in different threads)
*/
public class DrainFindDeadlockTest {
// Get a ThreadMXBean so we can check for deadlock. N.B. this may
// not be supported on all platforms, which means we will have to
// resort to the traditional test timeout method. However, if
// we have the support we'll get the deadlock details if one
// is detected.
private final boolean threadMXBeanDeadlockSupported =
new DrainFindDeadlockTest().testForDeadlock();
}
public static void randomDelay() {
int c = 0;
for (int i=0; i<runs; ++i) {
c=c+i;
}
}
" available.");
"DeadlockChecker");
// make the threads daemon threads so they will go away when the
// test exits
readConfig.setDaemon(true);
try {
} catch (InterruptedException ex) {
}
try {
readConfig.join();
} catch (InterruptedException ex) {
}
}
public void run() {
for (int i=0; i < MAX_ITERATIONS; i++) {
}
}
}
public void run() {
for (int i=0; i < MAX_ITERATIONS; i++) {
try {
}
}
}
}
}
// System.out.println("checkstate");
long[] deadlockedThreads = null;
if (isXblocked && isYblocked) {
// they are both blocked, but this doesn't necessarily mean
// they are deadlocked
} else {
}
if (deadlockedThreads != null) {
deadlockedThreads, true, true);
}
throw new RuntimeException("TEST FAILED: Deadlock detected");
}
}
}
}
}
}
public void run() {
try {
} catch (InterruptedException ex) {
};
}
}
}
}