Replace legacy thread retrieval function calls

Este commit está contenido en:
2025-09-16 09:20:59 +02:00
padre 556e832056
commit 2f25107d09
Se han modificado 2 ficheros con 2 adiciones y 2 borrados

Ver fichero

@@ -27,7 +27,7 @@ VOID
RTL::Dispatcher::GetStackLimits(OUT PULONG_PTR StackBase,
OUT PULONG_PTR StackLimit)
{
PKTHREAD Thread = KeGetCurrentThread();
PKTHREAD Thread = KE::Processor::GetCurrentThread();
*StackBase = (ULONG_PTR)Thread->StackBase;
*StackLimit = (ULONG_PTR)Thread->StackLimit;
}