vote up 3 vote down star
1

The title says it all. I didnt find any Win32 API which gives the state of a thread. So how do I get the Thread state?

flag

6 Answers

vote up 3 vote down check

I think - originally - this information was not provided because any API that provided this info would be misleading and useless.

Consider two possible cases - the current thread has suspended the thread-of-interest. Code in the current thread knows about the suspended state and should be able to share it so theres no need for the kernel team to add an API.

The 2nd case, some other / a 3rd thread in the system has suspended the thread of interest (and theres no way to track which thread that was). Now you have a race condition - that other thread could, at any time - unsuspend the thread of interest and the information gleaned from the API is useless - you have a value indicating the thread is suspended when it is in fact, not.

Moral of the story - if you want to know that a thread is suspended - suspend it: The return value from SuspendThread is the previous suspend count of the thread. And now you DO know something useful - The thread WAS AND STILL IS suspended - which is useful. Or that it WASN't (but now is) suspended. Either way, the thread's state is now deterministically known so you can in theory make some intelligent choices based on that - whether to ResumeThread, or keep it suspended.

link|flag
Yep - any attempt to query the thread suspend state is going to be inherently racy – Paul Betts Jun 17 at 16:10
1  
There are thread states beyond "suspended" and "running." I think it's more likely that the OP is interested in knowing which threads are blocked. In any case, your point about race conditions is a good one. If there is a way to get a thread's state, it should be used only for informational purposes. Any attempt to use it for control flow will lead to a world of hurt. – Peter Ruderman Jun 17 at 17:49
vote up 0 vote down

You don't, unfortunately. Depending on your code, you could approximate this (by setting a flag whenever you wait on a kernel object for instance) but keep in mind that a thread could always block inside an OS or library call and you wouldn't know about it.

link|flag
vote up 0 vote down

In Windows 7, you can use QueryUmsThreadInformation. (UMS stands for User mode scheduling).

See here for UmsThreadIsSuspended.

link|flag
1  
Minimum client requirement: Windows 7 (64-bit only) – Marco van de Voort Jun 17 at 12:43
Thanks, modified. – Brian R. Bondy Jun 17 at 12:44
For pre Windows 7, I wonder what SuspendThread returns for an already suspended thread. Maybe you can check this way by temporarily suspending/resuming and checking the return values. Just an idea, might not work. – Brian R. Bondy Jun 17 at 12:47
vote up 0 vote down

WMI's Win32_Thread class has a ThreadState property, where 5: "Suspended Blocked" and 6:Suspended Ready.

You will need the Thread's Id to get the right instance directly (the WMI object's Handle property is the thread id).

EDIT: Given this PowerShell query:

gwmi win32_thread | group ThreadState

gives

Count Name  Group
----- ----  -----
    6 2     {, , , ...}
  966 5     {, , , ...}

WMI has a different definition of "Suspended" to Win32.

link|flag
vote up 0 vote down

you could get thread suspend count with code like this:

DWORD GetThreadSuspendCount(HANDLE hThread) {
    DWORD dwSuspendCount = SuspendThread(hThread);
    ResumeThread(hThread);
    return dwSuspendCount;
}

but, as already said - it is not accurate. Moreover, suspending a thread is evil.

link|flag
vote up 0 vote down

I think the state here is referred to as

  • If thread is in thread proc , doing some processing Or
  • Waiting for event

This can be taken care of by using variable which can tell that if a thread is actually running or waiting for event to happen.

These scenarios appear when considering threadpools, having some n threads and based on each thread running status , tasks can be assigned to idle threads.

link|flag

Your Answer

Get an OpenID
or

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