diff options
Diffstat (limited to 'Private/KernelKit/ProcessManager.hpp')
| -rw-r--r-- | Private/KernelKit/ProcessManager.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Private/KernelKit/ProcessManager.hpp b/Private/KernelKit/ProcessManager.hpp index ddde3d3c..a459dbbd 100644 --- a/Private/KernelKit/ProcessManager.hpp +++ b/Private/KernelKit/ProcessManager.hpp @@ -100,12 +100,16 @@ enum class ProcessSelector : Int { using ImagePtr = VoidPtr; using HeapPtr = VoidPtr; -// @brief Process header structure. +// @name Process +// @brief Process Information Header (PIH) +// Holds information about the running process. +// Thread execution is being abstracted away. class Process final { public: explicit Process(VoidPtr startImage = nullptr) : Image(startImage) { MUST_PASS(startImage); } + ~Process() = default; HCORE_COPY_DEFAULT(Process) |
