Files
exectos/xtoskrnl/includes/ps/thread.hh
Aiken Harris 02d0f3f538
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 33s
Builds / ExectOS (i686, release) (push) Successful in 29s
Builds / ExectOS (amd64, debug) (push) Successful in 50s
Builds / ExectOS (i686, debug) (push) Successful in 48s
Introduce PS subsystem with IDLE process and thread creation
2026-06-04 13:09:09 +02:00

27 lines
622 B
C++

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/ps/thread.hh
* DESCRIPTION: Thread Management
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
*/
#ifndef __XTOSKRNL_PS_THREAD_HH
#define __XTOSKRNL_PS_THREAD_HH
#include <xtos.hh>
/* Process and thread management */
namespace PS
{
class Thread
{
public:
STATIC XTAPI XTSTATUS CreateIdleThread(IN PKPROCESSOR_CONTROL_BLOCK Prcb,
IN PVOID Stack);
};
}
#endif /* __XTOSKRNL_PS_THREAD_HH */