Implement process and thread object type getters

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;