summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/ThreadLocalStorage.inl
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-26 22:26:48 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-26 22:27:09 +0100
commiteba8b7ddd0a455d9e49f32dcae712c5612c0093c (patch)
tree749a3d34546d055507a920bce4ab10e8a9945719 /Private/KernelKit/ThreadLocalStorage.inl
parentdd192787a70a973f2474720aea49af3f6ddabb7a (diff)
Kernel: Major repository refactor.
Rework the repo into Private and Public modules. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/KernelKit/ThreadLocalStorage.inl')
-rw-r--r--Private/KernelKit/ThreadLocalStorage.inl50
1 files changed, 50 insertions, 0 deletions
diff --git a/Private/KernelKit/ThreadLocalStorage.inl b/Private/KernelKit/ThreadLocalStorage.inl
new file mode 100644
index 00000000..bf557122
--- /dev/null
+++ b/Private/KernelKit/ThreadLocalStorage.inl
@@ -0,0 +1,50 @@
+/*
+ * ========================================================
+ *
+ * hCore
+ * Copyright 2024 Mahrouss Logic, all rights reserved.
+ *
+ * ========================================================
+ */
+
+//! @brief Allocates a pointer from the process's tls.
+
+template <typename T>
+inline T* hcore_tls_new_ptr(void)
+{
+ using namespace hCore;
+
+ auto ref_process = ProcessManager::Shared().Leak().GetCurrent();
+
+ T* pointer = (T*)ref_process.Leak().New(sizeof(T));
+ return pointer;
+}
+
+//! @brief TLS delete implementation.
+template <typename T>
+inline bool hcore_tls_delete_ptr(T* ptr)
+{
+ if (!ptr)
+ return false;
+
+ using namespace hCore;
+
+ auto ref_process = ProcessManager::Shared().Leak().GetCurrent();
+ ptr->~T();
+
+ return ref_process.Leak().Delete(ptr, sizeof(T));
+}
+
+template <typename T, typename... Args>
+T* hcore_tls_new_class(Args&&... args)
+{
+ T* ptr = hcore_tls_new_ptr<T>();
+
+ if (ptr)
+ {
+ *ptr = T(hCore::forward(args)...);
+ return ptr;
+ }
+
+ return nullptr;
+}