summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/ProcessScheduler.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-02 07:04:53 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-02 07:04:53 +0200
commitf0811b1e200293c5ccc387d866d0ad49a41bba17 (patch)
treea31adbc1d14465e08088a98f1b4b8ebd0936db16 /Private/KernelKit/ProcessScheduler.hpp
parentd445096b8403ad0bdbf0095c50f66ba01fde9f33 (diff)
Kernel: New commit, see below.
- Implement FileManager's NewFilesystemManager. - Add ATA-DMA and ATA-PIO APIs. - Add the two raw call (fs_newfs_read_raw, fs_newfs_write_raw) to the NewFS API. - Add kPRDTTransferStatus to tell if PRD is in use. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/KernelKit/ProcessScheduler.hpp')
-rw-r--r--Private/KernelKit/ProcessScheduler.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Private/KernelKit/ProcessScheduler.hpp b/Private/KernelKit/ProcessScheduler.hpp
index c9e3b379..97ba92e3 100644
--- a/Private/KernelKit/ProcessScheduler.hpp
+++ b/Private/KernelKit/ProcessScheduler.hpp
@@ -30,10 +30,10 @@ class ProcessHeader;
class ProcessTeam;
class ProcessScheduler;
-//! @brief ProcessHeader identifier.
+//! @brief Process identifier.
typedef Int64 ProcessID;
-//! @brief ProcessHeader name length.
+//! @brief Process name length.
inline constexpr SizeT kProcessLen = 256U;
//! @brief Forward declaration.
@@ -41,7 +41,7 @@ class ProcessHeader;
class ProcessScheduler;
class ProcessHelper;
-//! @brief ProcessHeader status enum.
+//! @brief Process status enum.
enum class ProcessStatus : Int32 {
kStarting,
kRunning,
@@ -209,7 +209,7 @@ class ProcessTeam final {
Ref<ProcessHeader> mCurrentProcess;
};
-using ProcessPtr = ProcessHeader *;
+using ProcessHeaderRef = ProcessHeader *;
/// @brief ProcessHeader manager class.
/// The main class which you call to schedule an app.