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

Apperantly, GetThreadId is a Vista API. How can I get a thread's id on pre vista systems?

share|improve this question

3 Answers

up vote 3 down vote accepted

There are a few options:

share|improve this answer
in the enumeration case, is there a way to determine which of the enumerated threads corresponds to a HANDLE you have? – bdonlan Oct 3 '09 at 22:14
You pass your current process handle to CreateToolhelp32Snapshot with the TH32CS_SNAPMODULE flag. This will just enumerate threads in your process. – Reed Copsey Oct 3 '09 at 22:26
But it won't let you tell the difference between threads within your module, will it? – bdonlan Oct 3 '09 at 22:28
I ran into the same problem. The THREADENTRY32 struct has only the thread id, not the handle. As to MODULEENTRY32, according to MSDN in regard to it's th32ModuleID member: "This member is no longer used, and is always set to one" – sold Oct 3 '09 at 22:30
Well, you get the thread handle for every thread within your module. You can use this against ones that are known (ie: you've created), since you know their handle (provided you saved them)... But, it does give you the full ThreadID for each thread as part of the THREADENTRY32 struct, which is the direct equivalent of using GetThreadId. See msdn.microsoft.com/en-us/library/ms686735%28VS.85%29.aspx – Reed Copsey Oct 3 '09 at 22:31
show 6 more comments

If you can somehow make the thread in question call GetCurrentThreadId and store it somewhere, you could read the result.

share|improve this answer
This worked best for me, just calling that on create and storing it with threadhandle! thanks – Spencer Rose Oct 14 '11 at 1:23

If the thread in question enters an alertable wait state frequently, you could send it an APC with QueueUserAPC; the APC handler can then call GetCurrentThreadId and communicate the result back to the caller using whatever method you like.

You can also do this with undocumented NT functions. Using NtQueryInformationThread() on the ThreadBasicInformation class will give you the thread ID in the returned structure. An example can be found in the wine source. However, I'm not sure what versions of windows this is available on - keep in mind these undocumented functions can change at any time, so it's best to test them on the older versions of windows you're interested in, and simply use GetThreadId() where it's available.

Note that these undocumented functions can only be accessed by LoadLibrary() and GetProcAddress() on NTDLL; they have no import library. According to MSDN, declarations for the data structures can be found in Winternl.h, but if not, just define them yourselves based on the ntinternals links above.

share|improve this answer

Your Answer

 
discard

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

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