Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kill Eclipse background operation without killing Eclipse

Tags:

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.

like image 351
Rob Agar Avatar asked Apr 07 '11 01:04

Rob Agar


People also ask

How do I stop background operations in Eclipse?

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.

How do I force close a eclipse?

1) Launch Eclipse IDE > 2) Launch Task Manager > 3) Kill Eclipse.exe process eclipse doesn't get killed.

How do I stop eclipse from terminal?

You need to do that from the IDE. You can use the shortcut key – [Alt] + F + X or using menu option – File > Exit.

How do I force quit Eclipse in Ubuntu?

How do I force quit the application? open a terminal, type xkill + Return. Then click on the application's window.


1 Answers

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

like image 147
Newtopian Avatar answered Sep 23 '22 06:09

Newtopian