views:

304

answers:

2

Hi,

is there some way to terminate all (Java) applications launched with Eclipse at once?

br, Touko

+3  A: 

Open the debug view, select all, and click the big red box (or right-click and select "Terminate").

Jonathan Feinberg
or Teminate/Discomnect All
Mark
Oh yes, didn't think debug view. Thanks =)
Touko
A: 

In WINDOWS: you can terminate a process tree (a process and all children and children's children etc.) using ProcExplorer or some API functions..

I am not sure how you do it on linux...

accesomat
Great! It works on Linux already by running `sudo killall java` from console or, better, you can map this command to any keyboard shortcut. Eclipse itself isn't Java process, so killall is ok.
mschayna