summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
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: