diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-27 17:38:23 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-27 17:38:23 +0100 |
| commit | 1ce16b83dba0326b13dfa3399c1497ac6b1af14d (patch) | |
| tree | 8a5e4063b5d4cf6ce4f42dd500073994e9ef8954 /Public/Developer/System.Core/Sources | |
| parent | 6a18e607ffc4e83f2bd953c9de5c14f18e077df8 (diff) | |
Kernel && Developer:
Developer:
- Rework System API to use C instead of C++
- Add new calls in Thread.h
- Documented code.
Kernel:
- Rework handover stage, separated the Processor specific code from
the cross platform code.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Developer/System.Core/Sources')
| -rw-r--r-- | Public/Developer/System.Core/Sources/CRT0.c (renamed from Public/Developer/System.Core/Sources/CRT0.cxx) | 2 | ||||
| -rw-r--r-- | Public/Developer/System.Core/Sources/Heap.c (renamed from Public/Developer/System.Core/Sources/Heap.cxx) | 2 | ||||
| -rw-r--r-- | Public/Developer/System.Core/Sources/New+Delete.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Public/Developer/System.Core/Sources/CRT0.cxx b/Public/Developer/System.Core/Sources/CRT0.c index 244e62d5..03aa62b8 100644 --- a/Public/Developer/System.Core/Sources/CRT0.cxx +++ b/Public/Developer/System.Core/Sources/CRT0.c @@ -2,7 +2,7 @@ (C) Mahrouss Logic ===========================================*/ -#include <System.Core/Headers/Heap.hxx> +#include <System.Core/Headers/Heap.h> /// @brief Inits the library. /// @return if it was succesful or not. diff --git a/Public/Developer/System.Core/Sources/Heap.cxx b/Public/Developer/System.Core/Sources/Heap.c index 991987ca..390ae072 100644 --- a/Public/Developer/System.Core/Sources/Heap.cxx +++ b/Public/Developer/System.Core/Sources/Heap.c @@ -4,7 +4,7 @@ ------------------------------------------- */ -#include <System.Core/Headers/Heap.hxx> +#include <System.Core/Headers/Heap.h> /// @brief Allocate from the user's heap. /// @param refObj Process object. diff --git a/Public/Developer/System.Core/Sources/New+Delete.cxx b/Public/Developer/System.Core/Sources/New+Delete.cxx index 3901aed1..3e2942c5 100644 --- a/Public/Developer/System.Core/Sources/New+Delete.cxx +++ b/Public/Developer/System.Core/Sources/New+Delete.cxx @@ -4,7 +4,7 @@ ------------------------------------------- */ -#include <System.Core/Headers/Heap.hxx> +#include <System.Core/Headers/Heap.h> typedef SizeType size_t; |
