Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Debugger - how to display suspended threads only

When debugging a J2EE application, in Eclipse, I do see hundreds of Threads. However, I am interested in a single thread, in which my breakpoint hit. Going up and forth to find it everytime is a pain.

How do I filter out the unsuspended threads?

like image 878
math_law Avatar asked Oct 02 '22 15:10

math_law


1 Answers

As far as I know there is not an easy way to do this. One workaround would be like this:

  1. Get a focus on the Debug view
  2. Ctrl + F (in order to get the find dialog)
  3. Enter something like *Suspended
  4. Click OK
like image 94
Anton Avatar answered Oct 13 '22 10:10

Anton