1
0
원본 프로젝트 : xt-sys/exectos

Add thread information block

This commit is contained in:
2023-03-01 00:14:06 +01:00
부모 3d42fcc0f5
커밋 870a6680b0
4개의 변경된 파일22개의 추가작업 그리고 5개의 파일을 삭제

파일 보기

@@ -295,6 +295,17 @@ typedef struct _KWAIT_BLOCK
LONG SpareLong;
} KWAIT_BLOCK, *PKWAIT_BLOCK;
/* XT Thread Information Block (TIB) definition */
typedef struct _THREAD_INFORMATION_BLOCK
{
PEXCEPTION_REGISTRATION_RECORD ExceptionList;
PVOID StackBase;
PVOID StackLimit;
PVOID SubSystemTib;
PVOID ArbitraryUserPointer;
PTHREAD_INFORMATION_BLOCK Self;
} THREAD_INFORMATION_BLOCK, *PTHREAD_INFORMATION_BLOCK;
/* Process control block structure definition */
typedef struct _KPROCESS
{