Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "How to report a deadlock"

Line 6: Line 6:
 
* A modal dialog that won't close
 
* A modal dialog that won't close
  
In all of these cases, you should enter a bug report.  Include the following information in the report:
+
In all of these cases, you should [http://bugs.eclipse.org enter a bug report].  Include the following information in the report:
 
# What build of Eclipse you are using (see Help > About)
 
# What build of Eclipse you are using (see Help > About)
 
# What you were doing at the time of the deadlock (what dialog, wizard, editor, etc)
 
# What you were doing at the time of the deadlock (what dialog, wizard, editor, etc)

Revision as of 15:11, 2 June 2006

Say you've encountered a problem in Eclipse that has one of the following symptoms:

  • A long pause where the GUI does not redraw or respond
  • A deadlock or freeze where the GUI stops responding indefinitely
  • CPU pegged at 100% indefinitely
  • A modal dialog that won't close

In all of these cases, you should enter a bug report. Include the following information in the report:

  1. What build of Eclipse you are using (see Help > About)
  2. What you were doing at the time of the deadlock (what dialog, wizard, editor, etc)
  3. Whether it is reproducible; if so, provide steps
  4. Once the bug report is created, attach a stack trace use the "Create a New Attachment" link in bugzilla.

If you are running on a Sun VM, the stack trace is typically just printed directly on the console. In this case, paste the contents into a file and then attach the file. Stack traces pasted directly into bugzilla look very ugly. On an IBM VM, the stack trace is written to a file in the working directory of the Java process. Typically this will be found in the eclipse install directory. The steps for producing a stack trace vary according to what operating system you are using:

Getting a stack trace on Windows

On Windows, the Java VM is typically started by an executable called javaw.exe. If you run with the java.exe executable instead, then a Java console window will appear while it is running. If you are interested in reporting bugs, it is useful to always run with a console open so you can obtain stack traces. Here is a typical command line for starting Eclipse using java.exe:

  eclipse -vm c:\jre\bin\java.exe -vmargs -Xmx300M

Once you have a Java console window, you can obtain a stack trace by simply hitting Ctrl+Break when the console window is active.

Getting a stack trace on other platforms

On all Unix-based platforms, the steps for producing a stack dump are the same:

  1. Use the "ps" command to find out the process id (pid) of the Java VM
  2. Invoke "kill -3 <pid>" where <pid> is the process id of the Java VM

Back to the top