summaryrefslogtreecommitdiffhomepage
path: root/Kernel/KernelKit
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/KernelKit')
-rw-r--r--Kernel/KernelKit/ProcessScheduler.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/Kernel/KernelKit/ProcessScheduler.hxx b/Kernel/KernelKit/ProcessScheduler.hxx
index cd0a7a93..c47c562d 100644
--- a/Kernel/KernelKit/ProcessScheduler.hxx
+++ b/Kernel/KernelKit/ProcessScheduler.hxx
@@ -150,15 +150,13 @@ namespace Kernel
AffinityKind Affinity{AffinityKind::kStandard};
ProcessStatus Status{ProcessStatus::kDead};
- // Memory, images.
+ // Memory, images pointers.
HeapPtrKind HeapCursor{nullptr};
ImagePtr Image{nullptr};
HeapPtrKind HeapPtr{nullptr};
- typedef PEFSharedObjectInterface ProcessDLLInterface;
-
- // shared library handle, reserved for kSharedLib only.
- ProcessDLLInterface* DLLPtr{nullptr};
+ // shared library handle, reserved for kSharedObjectKind types of executables only.
+ PEFSharedObjectInterface* DLLPtr{nullptr};
// Memory usage.
SizeT UsedMemory{0};