I'm analyzing stack trace dumps in java and don't know how i can tell which threads are actually running. The way i see it a thread is either running, waiting on a lock, sleeping or waiting to be scheduled.
In my stack trace i see the following states
java.lang.Thread.State: WAITING (on object monitor)
java.lang.Thread.State: RUNNABLE
java.lang.Thread.State: TIMED_WAITING (sleeping)
java.lang.Thread.State: WAITING (parking)
java.lang.Thread.State: TIMED_WAITING (parking)
First what exactly do these states mean? Second i have 11 threads that are runnable, two of which are waiting on a condition. Does that mean 9 threads are running simultaneously? It doesn't seem possible because my machine doesn't have that many cores?