Mark user mode threads as not yet supported
Todas as verificações foram bem sucedidas
Builds / ExectOS (amd64) (push) Successful in 31s
Builds / ExectOS (i686) (push) Successful in 29s

Esse commit está contido em:
2023-11-15 20:41:28 +01:00
commit 5b6f3b0244
2 arquivos alterados com 6 adições e 0 exclusões

Ver Arquivo

@@ -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));

Ver Arquivo

@@ -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));