Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In theory, the JDB (java debugger) allows for a single thread to be killed. In practice, is it possible? Here I attach jdb to my JVM, which has an agentlib at port 8000:

$ jdb -attach 8000
> 

I list the threads:

> threads
Group system:
  (java.lang ...
  [...]

I find the thread in question and try to kill it:

> kill 0x21bb new java.lang.Exception("die!")
killing thead: pool-766-thread-1
> com.sun.tools.example.debug.expr.ParseException: Unable to create java.lang.Exception instance
Expression must evaluate to an object

So threads cannot be killed?

How can one create a new Exception in the jdb, to give it to the thread to die?

share|improve this question
The semicolor does not make a difference (tested it), and the poster in the "here" link that you added also says that he cannot kill the thread either. – Albert Cardona Nov 30 '11 at 20:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.