diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-19 22:50:16 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-19 22:50:16 +0100 |
| commit | a0f82d57976648c5bfcf165b2e304d2a4c8fb0c7 (patch) | |
| tree | c24cd3e850a9fc47b352ac8efa50a93b28388925 /Private/KernelKit | |
| parent | de413aa50bac1342e4ac8c7a66697ea3b551c2e4 (diff) | |
Kernel:Secret: Fix String class.
Improve kernel APIs.
Diffstat (limited to 'Private/KernelKit')
| -rw-r--r-- | Private/KernelKit/ProcessScheduler.hpp | 3 | ||||
| -rw-r--r-- | Private/KernelKit/ThreadLocalStorage.hxx | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Private/KernelKit/ProcessScheduler.hpp b/Private/KernelKit/ProcessScheduler.hpp index ba453fbe..e3cbbe86 100644 --- a/Private/KernelKit/ProcessScheduler.hpp +++ b/Private/KernelKit/ProcessScheduler.hpp @@ -205,7 +205,8 @@ public: using ProcessPtr = Process *; -//! @brief Kernel scheduler.. +/// @brief Process manager class. +/// The main class which you call to schedule an app. class ProcessManager final { private: explicit ProcessManager() = default; diff --git a/Private/KernelKit/ThreadLocalStorage.hxx b/Private/KernelKit/ThreadLocalStorage.hxx index c6be2c2b..09017fc0 100644 --- a/Private/KernelKit/ThreadLocalStorage.hxx +++ b/Private/KernelKit/ThreadLocalStorage.hxx @@ -11,9 +11,9 @@ //! @brief TLS implementation in C++ -#define kCookieMag0 'h' +#define kCookieMag0 'H' #define kCookieMag1 'C' -#define kCookieMag2 'o' +#define kCookieMag2 'R' template <typename T> T *tls_new_ptr(void); |
