- 
    Bug 
- 
    Resolution: Fixed
- 
     P2 P2
- 
    6u7, 6u10, 6u17
- 
        b12
- 
        x86, sparc
- 
        linux, linux_ubuntu, solaris_2.5.1
| Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build | 
|---|---|---|---|---|---|---|
| JDK-2173820 | 7 | Anthony Petrov | P4 | Resolved | Fixed | b55 | 
| JDK-2165644 | 6u10 | Anthony Petrov | P2 | Resolved | Fixed | b31 | 
| JDK-2165595 | 6u8 | Anthony Petrov | P2 | Resolved | Fixed | b01 | 
package client;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Frame1 extends JFrame implements ItemListener {
private JComboBox jComboBox1 = new JComboBox(new String[] { "Apples", "Oranges", "Mangoes"});
public Frame1() {
try {
jbInit();
} catch (Exception e) {
e.printStackTrace();
}
}
private void jbInit() throws Exception {
this.getContentPane().setLayout( null );
this.setSize( new Dimension(400, 300) );
jComboBox1.setBounds(new Rectangle(45, 25, 235, 25));
jComboBox1.addItemListener(this);
this.getContentPane().add(jComboBox1, null);
this.setVisible(true);
}
public void itemStateChanged(ItemEvent e) {
System.out.println("Entering ItemStateChanged");
int x = 1;
x++; // put a breakpoint on that line and it will freeze
System.out.println("Exiting ItemStateChanged");
}
public static void main(String[] s) {
new Frame1();
}
}
- backported by
- 
                    JDK-2165595 IDE (Netbeans, Eclipse, JDeveloper) Debugger hangs process on Linux -           
- Resolved
 
-         
- 
                    JDK-2165644 IDE (Netbeans, Eclipse, JDeveloper) Debugger hangs process on Linux -           
- Resolved
 
-         
- 
                    JDK-2173820 IDE (Netbeans, Eclipse, JDeveloper) Debugger hangs process on Linux -           
- Resolved
 
-         
- duplicates
- 
                    JDK-6798059 AGAIN: IDE (Netbeans, Eclipse, JDeveloper) Debugger hangs Linux-Desktop -           
- Closed
 
-         
- 
                    JDK-6916397 Setting a breakpoint in an AWT event handler freezes the whole system -           
- Closed
 
-         
- relates to
- 
                    JDK-6821377 Need to be able to disable grabbing keyboard/pointer when performing DND operations -           
- Open
 
-         
- 
                    JDK-6384219 REGRESSION: When a breakpoint is hit from EventDispatchThread, GNOME hangs. -           
- Resolved
 
-         
- 
                    JDK-6517045 Debugging JComboBox with Java 6 hangs X-windows. -           
- Closed
 
-