Stub out process and thread deletion functions
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 31s
Builds / ExectOS (i686, debug) (push) Successful in 41s
Builds / ExectOS (amd64, release) (push) Successful in 43s
Builds / ExectOS (i686, release) (push) Successful in 29s

This commit is contained in:
2026-07-09 20:51:56 +02:00
parent b98d94b4f3
commit e8c4b5cbda
4 changed files with 36 additions and 0 deletions

View File

@@ -50,6 +50,23 @@ PS::Process::CreateIdleProcess(IN PKPROCESSOR_CONTROL_BLOCK Prcb)
return KE::KThread::InitializeIdleThread(IdleProcess, IdleThread, Prcb, AR::ProcessorSupport::GetBootStack());
}
/**
* Deletes a Process object when the final reference is released.
*
* @param ProcessObject
* Supplies a pointer to the terminating process object.
*
* @return This routine does not return any value.
*
* @since XT 1.0
*/
XTAPI
VOID
PS::Process::DeleteProcess(IN PVOID ProcessObject)
{
UNIMPLEMENTED;
}
/**
* Returns a pointer to the process object associated with the currently executing thread.
*