Is there a way to find the Thread Information Block (TIB) of another thread running in your process?
I need to construct an exception handler for another thread but I can't do it in the thread itself. Therefore I need to find it's TIB and construct it from inside another thread. How can I achieve this?
GetThreadContextto obtain theFSselector and get the TIB. However I don't fully understand what you mean by "constructing an exception handler". Do you mean you want to explicitly add a SEH exception registration record to the chain with your handler? Note that AFAIK SEH registration records must come in descending memory order (this is a OS protection against memory corruption). Normally there's no problems since such records are allocated on the stack, but there may be a problem with your approach – valdo May 12 '11 at 5:56