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

@@ -61,3 +61,20 @@ PS::Thread::CreateIdleThread(IN PKPROCESSOR_CONTROL_BLOCK Prcb,
/* Return success */
return STATUS_SUCCESS;
}
/**
* Deletes a Thread object when the final reference is released.
*
* @param ThreadObject
* Supplies a pointer to the terminating thread object.
*
* @return This routine does not return any value.
*
* @since XT 1.0
*/
XTAPI
VOID
PS::Thread::DeleteThread(IN PVOID ThreadObject)
{
UNIMPLEMENTED;
}