Files
exectos/xtoskrnl/includes/ps.hh
Aiken Harris 9012f82681
Some checks failed
Builds / ExectOS (amd64, release) (push) Failing after 30s
Builds / ExectOS (i686, debug) (push) Failing after 35s
Builds / ExectOS (i686, release) (push) Failing after 27s
Builds / ExectOS (amd64, debug) (push) Failing after 36s
Introduce process quota management
2026-07-08 21:51:41 +02:00

20 lines
425 B
C++

/**
* 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/quota.hh>
#include <ps/thread.hh>
#endif /* __XTOSKRNL_PS_HH */