summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-11-30 20:32:14 +0100
committerAmlal <amlalelmahrouss@icloud.com>2024-11-30 20:32:14 +0100
commit0e28b91069fed6ebf0953b08a9fd4952fd198008 (patch)
tree05050f1d67bfd28e93c3b77018154a14b13ba8da /dev
parent98b24c3a90d3c97a06cb553d08369943605efbe0 (diff)
KernelKit/UserProcessScheduler.h: Hold better documentation about the
UserProcess class. Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev')
-rw-r--r--dev/ZKAKit/KernelKit/UserProcessScheduler.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/dev/ZKAKit/KernelKit/UserProcessScheduler.h b/dev/ZKAKit/KernelKit/UserProcessScheduler.h
index dbadc9d8..a3a6c8bd 100644
--- a/dev/ZKAKit/KernelKit/UserProcessScheduler.h
+++ b/dev/ZKAKit/KernelKit/UserProcessScheduler.h
@@ -124,8 +124,10 @@ namespace Kernel
/// @brief Helper type to describe a code image.
using ImagePtr = VoidPtr;
- struct UserProcessImage
+ struct UserProcessImage final
{
+ explicit UserProcessImage() = default;
+
ImagePtr fCode;
ImagePtr fBlob;
@@ -141,8 +143,7 @@ namespace Kernel
};
/// @name UserProcess
- /// @brief User process class.
- /// Holds information about the running process/thread.
+ /// @brief User process class, holds information about the running process/thread.
class UserProcess final
{
public: