-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
None
-
generic
-
generic
Date: Mon, 06 Apr 1998 08:41:28 -0500
From: "Brian R. Gilstrap" <###@###.###>
To: ###@###.###
Subject: Reproducable test case for locking up VM with JDK 1.1.5, Modal dialogs, and Swing
The following program will lock up the VM 99+% of the time when you
click any button in the modal dialog on the Win95 platform. Note that it
doesn't seem to matter what code follows the call to 'showConfirmDialog'
(as far as I can tell), nor what code preceeds it.
// Begin program text
import java.awt.*;
import java.awt.event.*;
import com.sun.java.swing.*;
public class Test
{
public static void main( String[]args )
{
Frame ourFrame = new Frame( "Test" );
ourFrame.pack();
ourFrame.setSize( 300, 200 );
ourFrame.setLocation( 200, 200 );
ourFrame.setVisible( true );
int result = JOptionPane.showConfirmDialog( ourFrame, "Lock up
the VM?" );
ourFrame.setLocation( 150, 150 );
}
}
// End program text
From: "Brian R. Gilstrap" <###@###.###>
To: ###@###.###
Subject: Reproducable test case for locking up VM with JDK 1.1.5, Modal dialogs, and Swing
The following program will lock up the VM 99+% of the time when you
click any button in the modal dialog on the Win95 platform. Note that it
doesn't seem to matter what code follows the call to 'showConfirmDialog'
(as far as I can tell), nor what code preceeds it.
// Begin program text
import java.awt.*;
import java.awt.event.*;
import com.sun.java.swing.*;
public class Test
{
public static void main( String[]args )
{
Frame ourFrame = new Frame( "Test" );
ourFrame.pack();
ourFrame.setSize( 300, 200 );
ourFrame.setLocation( 200, 200 );
ourFrame.setVisible( true );
int result = JOptionPane.showConfirmDialog( ourFrame, "Lock up
the VM?" );
ourFrame.setLocation( 150, 150 );
}
}
// End program text
- duplicates
-
JDK-4122683 hiding modal Dialog on NT can deadlock, freezing GUI
-
- Closed
-