Adjust thread initialization to match new stack allocator signature

This commit is contained in:
2025-12-29 19:16:13 +01:00
committed by CodingWorkshop Signing Team
parent e1144da195
commit b5ebd24f24

View File

@@ -152,7 +152,7 @@ KE::KThread::InitializeThread(IN PKPROCESS Process,
if(!Stack) if(!Stack)
{ {
/* Allocate new stack */ /* Allocate new stack */
Status = MM::KernelPool::AllocateKernelStack(&Stack, FALSE, 0); Status = MM::KernelPool::AllocateKernelStack(&Stack, KERNEL_STACK_SIZE);
if(Status != STATUS_SUCCESS || !Stack) if(Status != STATUS_SUCCESS || !Stack)
{ {
/* Stack allocation failed */ /* Stack allocation failed */