Implement deferred ready thread insertion
All checks were successful
Builds / ExectOS (i686, debug) (push) Successful in 34s
Builds / ExectOS (amd64, debug) (push) Successful in 36s
Builds / ExectOS (i686, release) (push) Successful in 39s
Builds / ExectOS (amd64, release) (push) Successful in 42s

This commit is contained in:
2026-06-17 16:13:02 +02:00
parent cea860b008
commit ea1ad3c6b1
4 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/ke/schedule.hh
* DESCRIPTION: XT Kernel Thread Scheduler
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
*/
#ifndef __XTOSKRNL_KE_SCHEDULE_HH
#define __XTOSKRNL_KE_SCHEDULE_HH
#include <xtos.hh>
/* Kernel Library */
namespace KE
{
class Scheduler
{
public:
STATIC XTFASTCALL VOID InsertDeferredReadyList(IN PKTHREAD Thread);
};
}
#endif /* __XTOSKRNL_KE_SCHEDULE_HH */