diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-16 14:00:12 +0000 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-16 14:00:12 +0000 |
| commit | 82f0a2da77af7d79e53f5e65e46c527c1fe92765 (patch) | |
| tree | 319ef7dd933367d64911c0ed9a53f91565002b00 /Private/KernelKit/ProcessManager.hpp | |
| parent | 544d0cadfc371bcfb54d9f7ec15464bc6a79af21 (diff) | |
| parent | 4c7aebf1b8964b99b89a25da0965b30fe6c7e6b3 (diff) | |
Merge branch 'HCR-18' into 'trunk'
HCR-18: First commit, bringing HCoreKrnl.exe into memory.
See merge request mahrouss-logic/micro-kernel!6
Diffstat (limited to 'Private/KernelKit/ProcessManager.hpp')
| -rw-r--r-- | Private/KernelKit/ProcessManager.hpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Private/KernelKit/ProcessManager.hpp b/Private/KernelKit/ProcessManager.hpp index e6d86959..543b3007 100644 --- a/Private/KernelKit/ProcessManager.hpp +++ b/Private/KernelKit/ProcessManager.hpp @@ -130,17 +130,25 @@ class Process final { ProcessStatus Status; // Memory, images. - HeapPtr PoolCursor{nullptr}; + HeapPtr HeapCursor{nullptr}; ImagePtr Image{nullptr}; - HeapPtr Pool{nullptr}; + HeapPtr HeapPtr{nullptr}; // memory usage SizeT UsedMemory{0}; SizeT FreeMemory{0}; + enum { + ExecutableType, + DLLType, + DriverType, + TypeCount, + }; + ProcessTime PTime; PID ProcessId{-1}; Int32 Ring{3}; + Int32 Kind{0}; public: //! @brief boolean operator, check status. |
