How do you break (pause) a Java program in Eclipse?

(I'm not talking about breakpoints. I'm talking about randomly pausing a program without knowing what it's currently executing, like in Visual Studio.)

link|improve this question

you mean like pausing the process? – Caspar Kleijne Apr 22 '11 at 21:33
Yeah, I couldn't find the pause button... – Mehrdad Apr 22 '11 at 21:37
Just out of curiosity, why would you like to do this? Because it does sound like a particularly odd strategy to debug code. – edalorzo Apr 22 '11 at 21:44
I'm imagining it could be a decent way to collect statistics about which classes the code happens to dwell in when running. Naturally, I would imagine it spending a lot of time in IO. – Edwin Buck Apr 22 '11 at 21:59
@edalorzo: Yup, it's exactly what @Edwin said. (In fact, the person whom I was doing this for is also named Edwin, haha..) It's for figuring out the bottlenecks in the code, without needing to profile. – Mehrdad Apr 22 '11 at 22:06
feedback

2 Answers

up vote 3 down vote accepted

Assuming you launched the program in debug mode, you can manually switch to the debug perspective.

From there, in the debug pane (which normally shows you the threads and stack location), press the pause button (which looks like a yellow VCR pause button).

Launching the code via the debug launcher is a requirement, as it initializes the JVM with the arguments to turn on the JDI (or Java Debug Interface). This interface can be routed through networks, which allows for remote debugging on embedded devices.

In the Eclipse scenario, the Eclipse program communicates to the child JVM process via JDI when debugging, which is how you can pause, step, and generally trace your way through a program.

-- Ok, you had problems finding it, I'll give you everything from the "top menu" perspective ---

Run->Debug (or F11)
Window->Open Perspective->Debug
Run->Suspend

If you want a better way to stop just the "main" thread, select (in the debug window at the top left screen) the "Thread [main]" prior to suspending. Otherwise, you'll stop all the threads in the JVM.

link|improve this answer
I couldn't find it, and I believe I was in the debug perspective... let me try again... – Mehrdad Apr 22 '11 at 21:39
For a true old school debugging experience, there's also jdb! – Edwin Buck Apr 22 '11 at 21:40
Yeah thanks but no thanks... X______X – Mehrdad Apr 22 '11 at 21:43
Ahhh found it, thanks a lot!! :) – Mehrdad Apr 22 '11 at 21:46
@Mehrdad, Hahahaha, I didn't really expect you to take me up on the jdb offer. I added a few "top menu bar" directions as it seemed to me that you were having issues finding the small tool tip buttons. – Edwin Buck Apr 22 '11 at 21:46
show 1 more comment
feedback

Start the program in a debug configuration (well not absolutely necessary), go into the debug view and there just select the thread you want to pause and click suspend.

That'll work just fine, although to be exact I think it'll still only pause at guard points (although that hardly matters since there are more than enough of those anyway)

link|improve this answer
I couldn't find the suspend key but I'll look for it again, thanks... – Mehrdad Apr 22 '11 at 21:39
Ahh, found it, thanks! – Mehrdad Apr 22 '11 at 21:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.