summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-02 20:11:24 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-02 20:11:24 +0200
commit59578978610f6af245f571a011694a51d94dc530 (patch)
tree3553807ef1c8095248520ee823c1426aef8738d8 /Kernel/Sources
parent9afcd1c001703c32964fed5906f36a2d913e91e9 (diff)
[unstable] [META] refactor whole project.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/Sources')
-rw-r--r--Kernel/Sources/Array.cxx2
-rw-r--r--Kernel/Sources/ArrayList.cxx2
-rw-r--r--Kernel/Sources/Atom.cxx2
-rw-r--r--Kernel/Sources/CodeManager.cxx4
-rw-r--r--Kernel/Sources/Crc32.cxx2
-rw-r--r--Kernel/Sources/CxxAbi-AMD64.cxx4
-rw-r--r--Kernel/Sources/CxxAbi-ARM64.cxx4
-rw-r--r--Kernel/Sources/Defines.cxx2
-rw-r--r--Kernel/Sources/DeviceManager.cxx2
-rw-r--r--Kernel/Sources/DriveManager.cxx4
-rw-r--r--Kernel/Sources/ErrorOr.cxx2
-rw-r--r--Kernel/Sources/FS/NewFS.cxx8
-rw-r--r--Kernel/Sources/FileManager.cxx4
-rw-r--r--Kernel/Sources/Framebuffer.cxx2
-rw-r--r--Kernel/Sources/GUIDWizard.cxx2
-rw-r--r--Kernel/Sources/GUIDWrapper.cxx2
-rw-r--r--Kernel/Sources/HError.cxx2
-rw-r--r--Kernel/Sources/HalPageAlloc.cxx6
-rw-r--r--Kernel/Sources/Heap.cxx6
-rw-r--r--Kernel/Sources/IndexableProperty.cxx4
-rw-r--r--Kernel/Sources/KernelCheck.cxx8
-rw-r--r--Kernel/Sources/LockDelegate.cxx2
-rw-r--r--Kernel/Sources/MP.cxx4
-rw-r--r--Kernel/Sources/Main.cxx16
-rw-r--r--Kernel/Sources/MutableArray.cxx2
-rw-r--r--Kernel/Sources/Network/IP.cxx4
-rw-r--r--Kernel/Sources/Network/NetworkDevice.cxx4
-rw-r--r--Kernel/Sources/New+Delete.cxx2
-rw-r--r--Kernel/Sources/NewFS+FileManager.cxx2
-rw-r--r--Kernel/Sources/NewFS+IO.cxx2
-rw-r--r--Kernel/Sources/NewFS+Journal.cxx4
-rw-r--r--Kernel/Sources/OwnPtr.cxx2
-rw-r--r--Kernel/Sources/PEFCodeManager.cxx10
-rw-r--r--Kernel/Sources/PEFSharedObject.cxx4
-rw-r--r--Kernel/Sources/PRDT.cxx6
-rw-r--r--Kernel/Sources/PageAllocator.cxx6
-rw-r--r--Kernel/Sources/PageManager.cxx4
-rw-r--r--Kernel/Sources/Pmm.cxx4
-rw-r--r--Kernel/Sources/ProcessHeap.cxx2
-rw-r--r--Kernel/Sources/ProcessScheduler.cxx2
-rw-r--r--Kernel/Sources/Property.cxx2
-rw-r--r--Kernel/Sources/Semaphore.cxx2
-rw-r--r--Kernel/Sources/Storage/AHCIDeviceInterface.cxx2
-rw-r--r--Kernel/Sources/Storage/ATADeviceInterface.cxx2
-rw-r--r--Kernel/Sources/Stream.cxx2
-rw-r--r--Kernel/Sources/String.cxx6
-rw-r--r--Kernel/Sources/ThreadLocalStorage.cxx4
-rw-r--r--Kernel/Sources/Timer.cxx2
-rw-r--r--Kernel/Sources/URL.cxx6
-rw-r--r--Kernel/Sources/User.cxx4
-rw-r--r--Kernel/Sources/Utils.cxx4
-rw-r--r--Kernel/Sources/Variant.cxx2
52 files changed, 97 insertions, 97 deletions
diff --git a/Kernel/Sources/Array.cxx b/Kernel/Sources/Array.cxx
index 40f38c00..e85f3418 100644
--- a/Kernel/Sources/Array.cxx
+++ b/Kernel/Sources/Array.cxx
@@ -4,4 +4,4 @@
------------------------------------------- */
-#include <NewKit/Array.hpp>
+#include <NewKit/Array.hxx>
diff --git a/Kernel/Sources/ArrayList.cxx b/Kernel/Sources/ArrayList.cxx
index 2553710a..37b8f522 100644
--- a/Kernel/Sources/ArrayList.cxx
+++ b/Kernel/Sources/ArrayList.cxx
@@ -4,4 +4,4 @@
------------------------------------------- */
-#include <NewKit/ArrayList.hpp>
+#include <NewKit/ArrayList.hxx>
diff --git a/Kernel/Sources/Atom.cxx b/Kernel/Sources/Atom.cxx
index 48526674..33ebae1a 100644
--- a/Kernel/Sources/Atom.cxx
+++ b/Kernel/Sources/Atom.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <NewKit/Atom.hpp>
+#include <NewKit/Atom.hxx>
// @file Atom.cpp
// @brief Atomic primitives
diff --git a/Kernel/Sources/CodeManager.cxx b/Kernel/Sources/CodeManager.cxx
index f48e8324..09e63073 100644
--- a/Kernel/Sources/CodeManager.cxx
+++ b/Kernel/Sources/CodeManager.cxx
@@ -4,8 +4,8 @@
------------------------------------------- */
-#include <NewKit/Utils.hpp>
-#include <KernelKit/CodeManager.hpp>
+#include <NewKit/Utils.hxx>
+#include <KernelKit/CodeManager.hxx>
#include <KernelKit/ProcessScheduler.hxx>
namespace Kernel
diff --git a/Kernel/Sources/Crc32.cxx b/Kernel/Sources/Crc32.cxx
index 03eb4589..1b8ce0e6 100644
--- a/Kernel/Sources/Crc32.cxx
+++ b/Kernel/Sources/Crc32.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <NewKit/Crc32.hpp>
+#include <NewKit/Crc32.hxx>
// @file CRC32.cpp
// @brief Check sequence implementation.
diff --git a/Kernel/Sources/CxxAbi-AMD64.cxx b/Kernel/Sources/CxxAbi-AMD64.cxx
index 43b8c725..80b5bbe4 100644
--- a/Kernel/Sources/CxxAbi-AMD64.cxx
+++ b/Kernel/Sources/CxxAbi-AMD64.cxx
@@ -6,8 +6,8 @@
#ifdef __NEWOS_AMD64__
-#include <KernelKit/DebugOutput.hpp>
-#include <NewKit/CxxAbi.hpp>
+#include <KernelKit/DebugOutput.hxx>
+#include <NewKit/CxxAbi.hxx>
#include <KernelKit/LPC.hxx>
atexit_func_entry_t __atexit_funcs[kDSOMaxObjects];
diff --git a/Kernel/Sources/CxxAbi-ARM64.cxx b/Kernel/Sources/CxxAbi-ARM64.cxx
index d5be9e5e..aba37149 100644
--- a/Kernel/Sources/CxxAbi-ARM64.cxx
+++ b/Kernel/Sources/CxxAbi-ARM64.cxx
@@ -6,8 +6,8 @@
#ifdef __NEWOS_ARM64__
-#include <KernelKit/DebugOutput.hpp>
-#include <NewKit/CxxAbi.hpp>
+#include <KernelKit/DebugOutput.hxx>
+#include <NewKit/CxxAbi.hxx>
#include <KernelKit/LPC.hxx>
EXTERN_C
diff --git a/Kernel/Sources/Defines.cxx b/Kernel/Sources/Defines.cxx
index 0f90f909..b3601d2a 100644
--- a/Kernel/Sources/Defines.cxx
+++ b/Kernel/Sources/Defines.cxx
@@ -4,4 +4,4 @@
------------------------------------------- */
-#include <NewKit/Defines.hpp>
+#include <NewKit/Defines.hxx>
diff --git a/Kernel/Sources/DeviceManager.cxx b/Kernel/Sources/DeviceManager.cxx
index b3e5f0c5..c4654546 100644
--- a/Kernel/Sources/DeviceManager.cxx
+++ b/Kernel/Sources/DeviceManager.cxx
@@ -4,4 +4,4 @@
------------------------------------------- */
-#include <KernelKit/DeviceManager.hpp>
+#include <KernelKit/DeviceManager.hxx>
diff --git a/Kernel/Sources/DriveManager.cxx b/Kernel/Sources/DriveManager.cxx
index 58a822e1..80df09bf 100644
--- a/Kernel/Sources/DriveManager.cxx
+++ b/Kernel/Sources/DriveManager.cxx
@@ -4,11 +4,11 @@
------------------------------------------- */
-#include <KernelKit/DebugOutput.hpp>
+#include <KernelKit/DebugOutput.hxx>
#include <KernelKit/DriveManager.hxx>
#include <Modules/ATA/ATA.hxx>
#include <Modules/AHCI/AHCI.hxx>
-#include <NewKit/Utils.hpp>
+#include <NewKit/Utils.hxx>
/// @file DriveManager.cxx
/// @brief Kernel drive manager.
diff --git a/Kernel/Sources/ErrorOr.cxx b/Kernel/Sources/ErrorOr.cxx
index 077f1550..3b67d28b 100644
--- a/Kernel/Sources/ErrorOr.cxx
+++ b/Kernel/Sources/ErrorOr.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <NewKit/ErrorOr.hpp>
+#include <NewKit/ErrorOr.hxx>
/***********************************************************************************/
/// @file ErrorOr.cxx ///
diff --git a/Kernel/Sources/FS/NewFS.cxx b/Kernel/Sources/FS/NewFS.cxx
index 82759c72..f9b08bcf 100644
--- a/Kernel/Sources/FS/NewFS.cxx
+++ b/Kernel/Sources/FS/NewFS.cxx
@@ -11,10 +11,10 @@
#include <Modules/Flash/Flash.hxx>
#include <FSKit/NewFS.hxx>
#include <KernelKit/LPC.hxx>
-#include <NewKit/Crc32.hpp>
-#include <NewKit/KernelCheck.hpp>
-#include <NewKit/String.hpp>
-#include <NewKit/Utils.hpp>
+#include <NewKit/Crc32.hxx>
+#include <NewKit/KernelCheck.hxx>
+#include <NewKit/String.hxx>
+#include <NewKit/Utils.hxx>
#include <FirmwareKit/EPM.hxx>
#include <KernelKit/ProcessScheduler.hxx>
#include <KernelKit/User.hxx>
diff --git a/Kernel/Sources/FileManager.cxx b/Kernel/Sources/FileManager.cxx
index dcdced27..634e4fd6 100644
--- a/Kernel/Sources/FileManager.cxx
+++ b/Kernel/Sources/FileManager.cxx
@@ -4,8 +4,8 @@
------------------------------------------- */
-#include <KernelKit/FileManager.hpp>
-#include <NewKit/Utils.hpp>
+#include <KernelKit/FileManager.hxx>
+#include <NewKit/Utils.hxx>
/// BUGS: 0
//! @brief File manager for Kernel.
diff --git a/Kernel/Sources/Framebuffer.cxx b/Kernel/Sources/Framebuffer.cxx
index f006a9b9..efbbae2f 100644
--- a/Kernel/Sources/Framebuffer.cxx
+++ b/Kernel/Sources/Framebuffer.cxx
@@ -13,7 +13,7 @@
------------------------------------------- */
-#include <KernelKit/Framebuffer.hpp>
+#include <KernelKit/Framebuffer.hxx>
#include <HintKit/CompilerHint.hxx>
/**
diff --git a/Kernel/Sources/GUIDWizard.cxx b/Kernel/Sources/GUIDWizard.cxx
index b65c73a8..14e5fd83 100644
--- a/Kernel/Sources/GUIDWizard.cxx
+++ b/Kernel/Sources/GUIDWizard.cxx
@@ -9,7 +9,7 @@
------------------------------------------- */
-#include <CFKit/GUIDWizard.hpp>
+#include <CFKit/GUIDWizard.hxx>
#include <NewKit/Ref.hxx>
// begin of ascii 'readable' characters. (A, C, C, 1, 2)
diff --git a/Kernel/Sources/GUIDWrapper.cxx b/Kernel/Sources/GUIDWrapper.cxx
index c7b4fc7c..40fdb427 100644
--- a/Kernel/Sources/GUIDWrapper.cxx
+++ b/Kernel/Sources/GUIDWrapper.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <CFKit/GUIDWrapper.hpp>
+#include <CFKit/GUIDWrapper.hxx>
namespace Kernel::XRN
{
diff --git a/Kernel/Sources/HError.cxx b/Kernel/Sources/HError.cxx
index 7c093865..0df3ea6d 100644
--- a/Kernel/Sources/HError.cxx
+++ b/Kernel/Sources/HError.cxx
@@ -5,7 +5,7 @@
------------------------------------------- */
#include <KernelKit/LPC.hxx>
-#include <NewKit/KernelCheck.hpp>
+#include <NewKit/KernelCheck.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/HalPageAlloc.cxx b/Kernel/Sources/HalPageAlloc.cxx
index 75e31e86..645b8e46 100644
--- a/Kernel/Sources/HalPageAlloc.cxx
+++ b/Kernel/Sources/HalPageAlloc.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <ArchKit/ArchKit.hpp>
+#include <ArchKit/ArchKit.hxx>
#ifdef __NEWOS_AMD64__
#include <HALKit/AMD64/HalPageAlloc.hxx>
@@ -12,8 +12,8 @@
#include <HALKit/ARM64/HalPageAlloc.hxx>
#endif
-#include <NewKit/Defines.hpp>
-#include <NewKit/KernelCheck.hpp>
+#include <NewKit/Defines.hxx>
+#include <NewKit/KernelCheck.hxx>
STATIC Kernel::Boolean kAllocationInProgress = false;
diff --git a/Kernel/Sources/Heap.cxx b/Kernel/Sources/Heap.cxx
index 94406d1d..75285cf8 100644
--- a/Kernel/Sources/Heap.cxx
+++ b/Kernel/Sources/Heap.cxx
@@ -4,11 +4,11 @@
------------------------------------------- */
-#include <KernelKit/DebugOutput.hpp>
+#include <KernelKit/DebugOutput.hxx>
#include <KernelKit/LPC.hxx>
#include <KernelKit/Heap.hxx>
-#include <NewKit/Crc32.hpp>
-#include <NewKit/PageManager.hpp>
+#include <NewKit/Crc32.hxx>
+#include <NewKit/PageManager.hxx>
//! @file KernelHeap.cxx
//! @brief Kernel heap allocator.
diff --git a/Kernel/Sources/IndexableProperty.cxx b/Kernel/Sources/IndexableProperty.cxx
index 940a7d7a..0f2d21df 100644
--- a/Kernel/Sources/IndexableProperty.cxx
+++ b/Kernel/Sources/IndexableProperty.cxx
@@ -8,8 +8,8 @@
#include <CompilerKit/CompilerKit.hxx>
#include <FSKit/IndexableProperty.hxx>
-#include <NewKit/MutableArray.hpp>
-#include <NewKit/Utils.hpp>
+#include <NewKit/MutableArray.hxx>
+#include <NewKit/Utils.hxx>
/// @brief File Indexer.
/// BUGS: 0
diff --git a/Kernel/Sources/KernelCheck.cxx b/Kernel/Sources/KernelCheck.cxx
index 690c8e8f..d33002bd 100644
--- a/Kernel/Sources/KernelCheck.cxx
+++ b/Kernel/Sources/KernelCheck.cxx
@@ -4,10 +4,10 @@
------------------------------------------- */
-#include <ArchKit/ArchKit.hpp>
-#include <KernelKit/DebugOutput.hpp>
-#include <NewKit/KernelCheck.hpp>
-#include <NewKit/String.hpp>
+#include <ArchKit/ArchKit.hxx>
+#include <KernelKit/DebugOutput.hxx>
+#include <NewKit/KernelCheck.hxx>
+#include <NewKit/String.hxx>
#include <FirmwareKit/Handover.hxx>
#include <Modules/ACPI/ACPIFactoryInterface.hxx>
diff --git a/Kernel/Sources/LockDelegate.cxx b/Kernel/Sources/LockDelegate.cxx
index df9eb3e4..5290aea8 100644
--- a/Kernel/Sources/LockDelegate.cxx
+++ b/Kernel/Sources/LockDelegate.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <KernelKit/LockDelegate.hpp>
+#include <KernelKit/LockDelegate.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/MP.cxx b/Kernel/Sources/MP.cxx
index b83f0817..265f622c 100644
--- a/Kernel/Sources/MP.cxx
+++ b/Kernel/Sources/MP.cxx
@@ -4,10 +4,10 @@
------------------------------------------- */
-#include <ArchKit/ArchKit.hpp>
+#include <ArchKit/ArchKit.hxx>
#include <KernelKit/ProcessScheduler.hxx>
#include <KernelKit/MP.hxx>
-#include <CFKit/Property.hpp>
+#include <CFKit/Property.hxx>
///! BUGS: 0
diff --git a/Kernel/Sources/Main.cxx b/Kernel/Sources/Main.cxx
index a23f82c1..a3877009 100644
--- a/Kernel/Sources/Main.cxx
+++ b/Kernel/Sources/Main.cxx
@@ -7,23 +7,23 @@
------------------------------------------- */
-#include <ArchKit/ArchKit.hpp>
+#include <ArchKit/ArchKit.hxx>
#include <Modules/CoreCG/CoreCG.hxx>
#include <CompilerKit/Detail.hxx>
#include <FirmwareKit/Handover.hxx>
-#include <KernelKit/FileManager.hpp>
-#include <KernelKit/Framebuffer.hpp>
+#include <KernelKit/FileManager.hxx>
+#include <KernelKit/Framebuffer.hxx>
#include <KernelKit/Heap.hxx>
#include <KernelKit/PEF.hxx>
#include <KernelKit/PEFCodeManager.hxx>
#include <KernelKit/ProcessScheduler.hxx>
#include <KernelKit/ProcessHeap.hxx>
#include <NewKit/Json.hxx>
-#include <NewKit/KernelCheck.hpp>
-#include <NewKit/String.hpp>
-#include <NewKit/Utils.hpp>
-#include <KernelKit/CodeManager.hpp>
-#include <CFKit/Property.hpp>
+#include <NewKit/KernelCheck.hxx>
+#include <NewKit/String.hxx>
+#include <NewKit/Utils.hxx>
+#include <KernelKit/CodeManager.hxx>
+#include <CFKit/Property.hxx>
EXTERN Kernel::Property cKernelVersion;
EXTERN Kernel::Property cAutoFormatDisk;
diff --git a/Kernel/Sources/MutableArray.cxx b/Kernel/Sources/MutableArray.cxx
index 2bc62fcb..b9395e8a 100644
--- a/Kernel/Sources/MutableArray.cxx
+++ b/Kernel/Sources/MutableArray.cxx
@@ -4,4 +4,4 @@
------------------------------------------- */
-#include <NewKit/MutableArray.hpp>
+#include <NewKit/MutableArray.hxx>
diff --git a/Kernel/Sources/Network/IP.cxx b/Kernel/Sources/Network/IP.cxx
index 64da3448..d5a7e69e 100644
--- a/Kernel/Sources/Network/IP.cxx
+++ b/Kernel/Sources/Network/IP.cxx
@@ -4,8 +4,8 @@
------------------------------------------- */
-#include <NetworkKit/IP.hpp>
-#include <NewKit/Utils.hpp>
+#include <NetworkKit/IP.hxx>
+#include <NewKit/Utils.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/Network/NetworkDevice.cxx b/Kernel/Sources/Network/NetworkDevice.cxx
index 7c61460e..0a6216d7 100644
--- a/Kernel/Sources/Network/NetworkDevice.cxx
+++ b/Kernel/Sources/Network/NetworkDevice.cxx
@@ -4,8 +4,8 @@
------------------------------------------- */
-#include <NetworkKit/NetworkDevice.hpp>
-#include <NewKit/Utils.hpp>
+#include <NetworkKit/NetworkDevice.hxx>
+#include <NewKit/Utils.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/New+Delete.cxx b/Kernel/Sources/New+Delete.cxx
index b43fafbc..a1c494dd 100644
--- a/Kernel/Sources/New+Delete.cxx
+++ b/Kernel/Sources/New+Delete.cxx
@@ -5,7 +5,7 @@
------------------------------------------- */
#include <KernelKit/Heap.hxx>
-#include <NewKit/New.hpp>
+#include <NewKit/New.hxx>
void* operator new[](size_t sz)
{
diff --git a/Kernel/Sources/NewFS+FileManager.cxx b/Kernel/Sources/NewFS+FileManager.cxx
index 402ce56c..0018a7ff 100644
--- a/Kernel/Sources/NewFS+FileManager.cxx
+++ b/Kernel/Sources/NewFS+FileManager.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <KernelKit/FileManager.hpp>
+#include <KernelKit/FileManager.hxx>
#include <KernelKit/Heap.hxx>
#ifdef __FSKIT_USE_NEWFS__
diff --git a/Kernel/Sources/NewFS+IO.cxx b/Kernel/Sources/NewFS+IO.cxx
index 314d309a..220a5a50 100644
--- a/Kernel/Sources/NewFS+IO.cxx
+++ b/Kernel/Sources/NewFS+IO.cxx
@@ -5,7 +5,7 @@
------------------------------------------- */
#include <KernelKit/DriveManager.hxx>
-#include <KernelKit/FileManager.hpp>
+#include <KernelKit/FileManager.hxx>
/*************************************************************
*
diff --git a/Kernel/Sources/NewFS+Journal.cxx b/Kernel/Sources/NewFS+Journal.cxx
index 8685f6ee..9562161c 100644
--- a/Kernel/Sources/NewFS+Journal.cxx
+++ b/Kernel/Sources/NewFS+Journal.cxx
@@ -4,8 +4,8 @@
------------------------------------------- */
-#include <KernelKit/DebugOutput.hpp>
-#include <KernelKit/FileManager.hpp>
+#include <KernelKit/DebugOutput.hxx>
+#include <KernelKit/FileManager.hxx>
#ifdef __FSKIT_USE_NEWFS__
diff --git a/Kernel/Sources/OwnPtr.cxx b/Kernel/Sources/OwnPtr.cxx
index cfb51b86..c16378ac 100644
--- a/Kernel/Sources/OwnPtr.cxx
+++ b/Kernel/Sources/OwnPtr.cxx
@@ -4,4 +4,4 @@
------------------------------------------- */
-#include <NewKit/OwnPtr.hpp>
+#include <NewKit/OwnPtr.hxx>
diff --git a/Kernel/Sources/PEFCodeManager.cxx b/Kernel/Sources/PEFCodeManager.cxx
index e95d9923..f6caab19 100644
--- a/Kernel/Sources/PEFCodeManager.cxx
+++ b/Kernel/Sources/PEFCodeManager.cxx
@@ -4,14 +4,14 @@
------------------------------------------- */
-#include <KernelKit/DebugOutput.hpp>
+#include <KernelKit/DebugOutput.hxx>
#include <KernelKit/Heap.hxx>
#include <KernelKit/PEFCodeManager.hxx>
#include <KernelKit/ProcessScheduler.hxx>
-#include <NewKit/Defines.hpp>
-#include <NewKit/KernelCheck.hpp>
-#include <NewKit/OwnPtr.hpp>
-#include <NewKit/String.hpp>
+#include <NewKit/Defines.hxx>
+#include <NewKit/KernelCheck.hxx>
+#include <NewKit/OwnPtr.hxx>
+#include <NewKit/String.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/PEFSharedObject.cxx b/Kernel/Sources/PEFSharedObject.cxx
index 90f8e9b6..2b70dbaf 100644
--- a/Kernel/Sources/PEFSharedObject.cxx
+++ b/Kernel/Sources/PEFSharedObject.cxx
@@ -7,12 +7,12 @@
* ========================================================
*/
-#include <KernelKit/DebugOutput.hpp>
+#include <KernelKit/DebugOutput.hxx>
#include <KernelKit/PEF.hxx>
#include <KernelKit/PEFSharedObject.hxx>
#include <KernelKit/ProcessScheduler.hxx>
#include <KernelKit/ThreadLocalStorage.hxx>
-#include <NewKit/Defines.hpp>
+#include <NewKit/Defines.hxx>
/* -------------------------------------------
diff --git a/Kernel/Sources/PRDT.cxx b/Kernel/Sources/PRDT.cxx
index 372df03f..4f5c1178 100644
--- a/Kernel/Sources/PRDT.cxx
+++ b/Kernel/Sources/PRDT.cxx
@@ -4,9 +4,9 @@
------------------------------------------- */
-#include <KernelKit/DebugOutput.hpp>
-#include <NewKit/String.hpp>
-#include <StorageKit/PRDT.hpp>
+#include <KernelKit/DebugOutput.hxx>
+#include <NewKit/String.hxx>
+#include <StorageKit/PRDT.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/PageAllocator.cxx b/Kernel/Sources/PageAllocator.cxx
index 5adf1de3..5ed2c407 100644
--- a/Kernel/Sources/PageAllocator.cxx
+++ b/Kernel/Sources/PageAllocator.cxx
@@ -4,9 +4,9 @@
------------------------------------------- */
-#include <ArchKit/ArchKit.hpp>
-#include <KernelKit/DebugOutput.hpp>
-#include <NewKit/PageAllocator.hpp>
+#include <ArchKit/ArchKit.hxx>
+#include <KernelKit/DebugOutput.hxx>
+#include <NewKit/PageAllocator.hxx>
/// @brief Internal namespace, used internally by kernel.
namespace Kernel::Detail
diff --git a/Kernel/Sources/PageManager.cxx b/Kernel/Sources/PageManager.cxx
index a9672b3b..2a1ebce8 100644
--- a/Kernel/Sources/PageManager.cxx
+++ b/Kernel/Sources/PageManager.cxx
@@ -4,8 +4,8 @@
------------------------------------------- */
-#include <KernelKit/DebugOutput.hpp>
-#include <NewKit/PageManager.hpp>
+#include <KernelKit/DebugOutput.hxx>
+#include <NewKit/PageManager.hxx>
#ifdef __NEWOS_AMD64__
#include <HALKit/AMD64/HalPageAlloc.hxx>
diff --git a/Kernel/Sources/Pmm.cxx b/Kernel/Sources/Pmm.cxx
index f3425c5a..3c42c5cf 100644
--- a/Kernel/Sources/Pmm.cxx
+++ b/Kernel/Sources/Pmm.cxx
@@ -4,8 +4,8 @@
------------------------------------------- */
-#include <KernelKit/DebugOutput.hpp>
-#include <NewKit/Pmm.hpp>
+#include <KernelKit/DebugOutput.hxx>
+#include <NewKit/Pmm.hxx>
#if defined(__NEWOS_ARM64__)
#include <HALKit/ARM64/Processor.hxx>
diff --git a/Kernel/Sources/ProcessHeap.cxx b/Kernel/Sources/ProcessHeap.cxx
index fe54be4b..e680dbe7 100644
--- a/Kernel/Sources/ProcessHeap.cxx
+++ b/Kernel/Sources/ProcessHeap.cxx
@@ -6,7 +6,7 @@
#include <KernelKit/ProcessScheduler.hxx>
#include <KernelKit/ProcessHeap.hxx>
-#include <NewKit/PageManager.hpp>
+#include <NewKit/PageManager.hxx>
#define kHeapHeaderPaddingSz (16U)
diff --git a/Kernel/Sources/ProcessScheduler.cxx b/Kernel/Sources/ProcessScheduler.cxx
index 2033215e..55017c83 100644
--- a/Kernel/Sources/ProcessScheduler.cxx
+++ b/Kernel/Sources/ProcessScheduler.cxx
@@ -13,7 +13,7 @@
#include <KernelKit/PEFSharedObject.hxx>
#include <KernelKit/MP.hxx>
#include <KernelKit/Heap.hxx>
-#include <NewKit/String.hpp>
+#include <NewKit/String.hxx>
#include <KernelKit/LPC.hxx>
///! BUGS: 0
diff --git a/Kernel/Sources/Property.cxx b/Kernel/Sources/Property.cxx
index 60bd03da..f5960ff2 100644
--- a/Kernel/Sources/Property.cxx
+++ b/Kernel/Sources/Property.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <CFKit/Property.hpp>
+#include <CFKit/Property.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/Semaphore.cxx b/Kernel/Sources/Semaphore.cxx
index 49ec254a..a0b5d579 100644
--- a/Kernel/Sources/Semaphore.cxx
+++ b/Kernel/Sources/Semaphore.cxx
@@ -5,7 +5,7 @@
------------------------------------------- */
#include <KernelKit/ProcessScheduler.hxx>
-#include <KernelKit/Semaphore.hpp>
+#include <KernelKit/Semaphore.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/Storage/AHCIDeviceInterface.cxx b/Kernel/Sources/Storage/AHCIDeviceInterface.cxx
index 4b0aa23d..d34c2692 100644
--- a/Kernel/Sources/Storage/AHCIDeviceInterface.cxx
+++ b/Kernel/Sources/Storage/AHCIDeviceInterface.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <StorageKit/AHCI.hpp>
+#include <StorageKit/AHCI.hxx>
using namespace Kernel;
diff --git a/Kernel/Sources/Storage/ATADeviceInterface.cxx b/Kernel/Sources/Storage/ATADeviceInterface.cxx
index cc87491e..6dd98aae 100644
--- a/Kernel/Sources/Storage/ATADeviceInterface.cxx
+++ b/Kernel/Sources/Storage/ATADeviceInterface.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <StorageKit/ATA.hpp>
+#include <StorageKit/ATA.hxx>
using namespace Kernel;
diff --git a/Kernel/Sources/Stream.cxx b/Kernel/Sources/Stream.cxx
index c2839cae..b960487a 100644
--- a/Kernel/Sources/Stream.cxx
+++ b/Kernel/Sources/Stream.cxx
@@ -9,4 +9,4 @@
------------------------------------------- */
-#include <NewKit/Stream.hpp>
+#include <NewKit/Stream.hxx>
diff --git a/Kernel/Sources/String.cxx b/Kernel/Sources/String.cxx
index 8d4c7930..f876014f 100644
--- a/Kernel/Sources/String.cxx
+++ b/Kernel/Sources/String.cxx
@@ -4,9 +4,9 @@
------------------------------------------- */
-#include <NewKit/String.hpp>
-#include <NewKit/Utils.hpp>
-#include <KernelKit/DebugOutput.hpp>
+#include <NewKit/String.hxx>
+#include <NewKit/Utils.hxx>
+#include <KernelKit/DebugOutput.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/ThreadLocalStorage.cxx b/Kernel/Sources/ThreadLocalStorage.cxx
index aac6f9ce..460066df 100644
--- a/Kernel/Sources/ThreadLocalStorage.cxx
+++ b/Kernel/Sources/ThreadLocalStorage.cxx
@@ -7,8 +7,8 @@
* ========================================================
*/
-#include <NewKit/String.hpp>
-#include <CFKit/Property.hpp>
+#include <NewKit/String.hxx>
+#include <CFKit/Property.hxx>
#include <KernelKit/ProcessScheduler.hxx>
#include <KernelKit/ThreadLocalStorage.hxx>
diff --git a/Kernel/Sources/Timer.cxx b/Kernel/Sources/Timer.cxx
index 0d56dcae..7b840a11 100644
--- a/Kernel/Sources/Timer.cxx
+++ b/Kernel/Sources/Timer.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <KernelKit/Timer.hpp>
+#include <KernelKit/Timer.hxx>
///! BUGS: 0
///! @file Timer.cxx
diff --git a/Kernel/Sources/URL.cxx b/Kernel/Sources/URL.cxx
index 69c4733f..be21169e 100644
--- a/Kernel/Sources/URL.cxx
+++ b/Kernel/Sources/URL.cxx
@@ -4,9 +4,9 @@
------------------------------------------- */
-#include <CFKit/URL.hpp>
-#include <KernelKit/DebugOutput.hpp>
-#include <NewKit/Utils.hpp>
+#include <CFKit/URL.hxx>
+#include <KernelKit/DebugOutput.hxx>
+#include <NewKit/Utils.hxx>
/// BUGS: 0
diff --git a/Kernel/Sources/User.cxx b/Kernel/Sources/User.cxx
index 40723f27..60981551 100644
--- a/Kernel/Sources/User.cxx
+++ b/Kernel/Sources/User.cxx
@@ -11,8 +11,8 @@
*/
#include <KernelKit/User.hxx>
-#include <NewKit/KernelCheck.hpp>
-#include <KernelKit/FileManager.hpp>
+#include <NewKit/KernelCheck.hxx>
+#include <KernelKit/FileManager.hxx>
#include <KernelKit/ProcessScheduler.hxx>
#include <KernelKit/Heap.hxx>
diff --git a/Kernel/Sources/Utils.cxx b/Kernel/Sources/Utils.cxx
index 2132e80d..6eaa7757 100644
--- a/Kernel/Sources/Utils.cxx
+++ b/Kernel/Sources/Utils.cxx
@@ -4,8 +4,8 @@
------------------------------------------- */
-#include <NewKit/Utils.hpp>
-#include <KernelKit/DebugOutput.hpp>
+#include <NewKit/Utils.hxx>
+#include <KernelKit/DebugOutput.hxx>
namespace Kernel
{
diff --git a/Kernel/Sources/Variant.cxx b/Kernel/Sources/Variant.cxx
index 7dc71df5..66cf3382 100644
--- a/Kernel/Sources/Variant.cxx
+++ b/Kernel/Sources/Variant.cxx
@@ -4,7 +4,7 @@
------------------------------------------- */
-#include <NewKit/Variant.hpp>
+#include <NewKit/Variant.hxx>
namespace Kernel
{