Introduce PS subsystem with IDLE process and thread creation
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

This commit is contained in:
2026-06-04 13:09:09 +02:00
parent e2a78389f2
commit 02d0f3f538
7 changed files with 175 additions and 0 deletions

18
xtoskrnl/includes/ps.hh Normal file
View File

@@ -0,0 +1,18 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/ps.hh
* DESCRIPTION: Process and thread management
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
*/
#ifndef __XTOSKRNL_PS_HH
#define __XTOSKRNL_PS_HH
#include <xtos.hh>
#include <ps/process.hh>
#include <ps/thread.hh>
#endif /* __XTOSKRNL_PS_HH */