diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-19 11:08:35 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-19 11:11:32 +0200 |
| commit | 849af3db3b0d0c1edd3d32359be21785e3465bf2 (patch) | |
| tree | 6f7a9266a9972da7cf8418fe2a41b2e95154e9e1 /dev/ZKA/Sources/ProcessScheduler.cxx | |
| parent | 933d1ef6721903895b15c45917a0fc705763fbf5 (diff) | |
[IMP]
+ Add the thread header block, which contains informations about a list
of threads inside a process.
+ Add WINDOW structure to keep track of Windows as well.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/Sources/ProcessScheduler.cxx')
| -rw-r--r-- | dev/ZKA/Sources/ProcessScheduler.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ZKA/Sources/ProcessScheduler.cxx b/dev/ZKA/Sources/ProcessScheduler.cxx index a979c413..0066d70b 100644 --- a/dev/ZKA/Sources/ProcessScheduler.cxx +++ b/dev/ZKA/Sources/ProcessScheduler.cxx @@ -210,8 +210,8 @@ namespace Kernel } /// @brief Add process to list. - /// @param process - /// @return + /// @param process the process *Ref* class. + /// @return the process index inside the team. SizeT ProcessScheduler::Add(Ref<PROCESS_HEADER_BLOCK>& process) { if (!process.Leak().Image) |
