Jump to content

TIB

From EDM2
Revision as of 19:19, 30 November 2005 by Anakor (talk | contribs) (New)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

TIB

Thread Information Block.

Type

PVOID  tib_pexchain
PVOID  tib_pstack
PVOID  tib_pstacklimit
PTIB2  tib_ptib2
ULONG  tib_version
ULONG  tib_ordinal

C Declaration Method

typedef struct

Fields

tib_pexchain     Head of exception handler chain. 
tib_pstack       Pointer to the base of the stack. 
tib_pstacklimit  Pointer to the end of the stack.
tib_ptib2        Pointer to a system-specific thread information block.
tib_version      Version number for this Thread Information Block.
tib_ordinal      Thread ordinal number.

Comment

The fields of this data structure should not be modified unless you are switching stacks, in which case only the tib_pstack and tib_pstacklimit should changed.