diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-29 09:57:48 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-29 09:57:48 +0100 |
| commit | 8b7216aaf2dacad7ce67d734d07b047fed8ec01e (patch) | |
| tree | 7af56dd646a4d12a25024da7ad5e6406ff98f124 /dev/Kernel/SystemKit/Scheduler.h | |
| parent | 5b1bb6cc086047e99a1d246fd2d337bf76887bd8 (diff) | |
IMPL: NeFS: Add file lock feature and validation for it.
- It is added to hide files from indexing.
- And will be used to hide system files.
IMPL: Swap: Add SwapDiskDelegate class, will also work on a swap packet
structure.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/SystemKit/Scheduler.h')
| -rw-r--r-- | dev/Kernel/SystemKit/Scheduler.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dev/Kernel/SystemKit/Scheduler.h b/dev/Kernel/SystemKit/Scheduler.h new file mode 100644 index 00000000..5b6c8719 --- /dev/null +++ b/dev/Kernel/SystemKit/Scheduler.h @@ -0,0 +1,20 @@ + +/* ------------------------------------------- + + Copyright (C) 2024, Theater Quality Corp, all rights reserved. + +------------------------------------------- */ + +#pragma once + +#include <NewKit/Defines.h> + +/// @file Scheduler.h +/// @brief This file takes care of creating processes/threads from a subsystem context. + +namespace Kernel +{ + class UserSubsystem; + class UserEnvVar; + class UserEnv; +} // namespace Kernel
\ No newline at end of file |
