Mark user mode threads as not yet supported
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 31s
Builds / ExectOS (i686) (push) Successful in 29s

This commit is contained in:
Rafal Kupiec 2023-11-15 20:41:28 +01:00
부모 35aa26e0e9
커밋 5b6f3b0244
로그인 계정: belliash
GPG 키 ID: 4E829243E0CFE6B4
2개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -50,6 +50,9 @@ KepInitializeThreadContext(IN PKTHREAD Thread,
/* Check if context provided for this thread */
if(ContextRecord)
{
/* User mode thread needs further initialization, this is not completed */
UNIMPLEMENTED;
/* Fill exception and trap frames with zeroes */
RtlZeroMemory(&ThreadFrame->ExceptionFrame, sizeof(KEXCEPTION_FRAME));
RtlZeroMemory(&ThreadFrame->TrapFrame, sizeof(KTRAP_FRAME));

파일 보기

@ -51,6 +51,9 @@ KepInitializeThreadContext(IN PKTHREAD Thread,
/* Check if context provided for this thread */
if(ContextRecord)
{
/* User mode thread needs further initialization, this is not completed */
UNIMPLEMENTED;
/* Fill trap frame with zeroes */
RtlZeroMemory(&ThreadFrame->TrapFrame, sizeof(KTRAP_FRAME));