Implement process and thread object type getters
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 32s
Builds / ExectOS (amd64, debug) (push) Successful in 34s
Builds / ExectOS (i686, debug) (push) Successful in 41s
Builds / ExectOS (i686, release) (push) Successful in 40s

This commit is contained in:
2026-07-09 20:33:57 +02:00
parent 17f23fff41
commit b98d94b4f3
5 changed files with 78 additions and 0 deletions

View File

@@ -12,5 +12,11 @@
/* Pointer to the system process object */
PEPROCESS PS::Process::SystemProcess;
/* Global object type descriptor for Process objects */
POBJECT_TYPE PS::ProcessManager::ProcessType;
/* Global object type descriptor for Thread objects */
POBJECT_TYPE PS::ProcessManager::ThreadType;
/* Default system-wide quota block assigned to processes */
EPROCESS_QUOTA_BLOCK PS::Quota::DefaultQuotaBlock;