Reputation: 89
I am debugging an Android Project and notice that there are asterisks on some of the Thread ID. What is it for?
Upvotes: 3
Views: 553
Reputation: 3530
Daemon threads are shown with an asterisk (*). This will be one of the following:
wait - in Object.wait()
native - executing native code
vmwait - waiting on a VM resource
zombie - thread is in the process of dying
you can read more about here
Upvotes: 1