diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-07 17:42:32 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-07 17:43:56 +0200 |
| commit | ca83108fd138cc0398f900e6a6c0a53ad51aee31 (patch) | |
| tree | 66146e07671517ab1867663081ec39e348205731 /Private/Source/ProcessTeam.cxx | |
| parent | 636a6034a613f98f13848bf4bf1143bf5966dbce (diff) | |
MHR-23: Rework graphics stack, moving to another repository.
- Alongside patches on the FileManager.
- And code improvements on the System API.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/Source/ProcessTeam.cxx')
| -rw-r--r-- | Private/Source/ProcessTeam.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Private/Source/ProcessTeam.cxx b/Private/Source/ProcessTeam.cxx index 81edca14..d9711ad9 100644 --- a/Private/Source/ProcessTeam.cxx +++ b/Private/Source/ProcessTeam.cxx @@ -6,7 +6,7 @@ /***********************************************************************************/ /// @file ProcessTeam.cxx -/// @brief Process teams. +/// @brief Process teams implementation. /***********************************************************************************/ #include <KernelKit/ProcessScheduler.hpp> @@ -14,14 +14,14 @@ namespace NewOS { /// @brief Process list array getter. - /// @return + /// @return The list of process to schedule. MutableArray<Ref<ProcessHeader>>& ProcessTeam::AsArray() { return mProcessList; } /// @brief Current process getter. - /// @return + /// @return The current process header. Ref<ProcessHeader>& ProcessTeam::AsRef() { return mCurrentProcess; |
