Kill Eclipse background operation without killing Eclipse

Is there any way to kill an Eclipse background operation without killing Eclipse itself?

Specifically, I want to kill stalled Subclipse SVN operations. Clicking 'cancel' pops up a little Cancel Requested message, but the operation still sits there forever blocking everything else.

This is Eclipse Helios on Windows 7 if that makes any difference.


Solution 1:

Killing the task from the Progress window (Window->Show View->Other|General->Progress or Alt+Shift+Q, Q | General->Progress).

Then choose the offending thread and click the red square.

Note it sometimes takes a delay before the kill occur, you may also have to kill other thread in there to get what you want. Lastly it does not always work, if this fails I usually just restart eclipse.

Hope this helps

Solution 2:

I was able to unstuck Eclipse (it was stuck on a large file diff) using the following steps.

  • Preparations: I always start Eclipse with the eclipse-console: Add start parameter -console in eclipse.ini (first line)
  • The console always remains responsive even when the eclipse UI freezes
  • I found the following commands in the console: help threads
  • List all threads: threads
  • Stop a thread: threads stop THREAD-NAME

UPDATE: I found out, that usually the "main" thread causes the freezing. Thus the solution is:

Type this in the eclipse console:

threads stop main

This will trigger/throw an Exception in that thread, effectively interrupting what it was doing (being stuck).

This might cause other side-effects (depending on what action was interrupted and where), but i had no problems with it so far.

Solution 3:

I was able to stop/terminate the hanging SVN commit process by briefly disconnecting the network adapter. This saved me from killing the Eclipse process, which if not terminated gracefully is known to cause other headaches.

Solution 4:

If you go to window Progress in Eclipse and click red square to Stop:

Stopping Wildfly 9.x

and next, red square becomes gray square and process i frozen (Cancel Requested):

eStopping Wildfly 9.x Cancel Requested

You must use Task Manager (Alt+Ctrl+Del on Windows) for kill process. Go to tab Processes, find process javaw.exe* and click End Process.

The result: frozen process in Eclipse was closed but your Eclipse wasn't closed.

* Process with name javaw.exe is for WildFly server. For Subclipse SVN can be another name of proces.