I am looking for potentially a JDI API to pause the JVM at any arbitrary point during its execution. Looking at the BreakPointRequest createBreakpointRequest method needs a specific location. Is there any other API that does not need a location or someway to get current Location that could be passed to create a breakpoint.

I am basically looking for a way to attach and pause the application, then use JVMTI agent to receive callback for the BreakPoint event to perform further processing. Thanks

link|improve this question
You want to halt JVM or application? if I understand correctly, one jvm may host multiple applications. If it is Jvm, Virtualmachine class, process method may be worth to research on for your req. – thinksteep Jan 15 at 8:06
feedback

2 Answers

up vote 1 down vote accepted

Breakpoints only make sense with a location in source. Arbitrary pausing your application is probably best done by suspending all the threads currently running in the JVM. Take a look at SuspendThreadList() or SuspendThread in jvmti. This mechanism would be the 'pause' you are looking for.

link|improve this answer
feedback

i think jdb - The Java Debugger will be the best option. please check the url about the jdb

http://docs.oracle.com/javase/1.3/docs/tooldocs/solaris/jdb.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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