diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-20 12:32:38 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-20 12:38:04 +0100 |
| commit | 7d2a7e7cab23b8217498866615a3719e5d3980ee (patch) | |
| tree | 75b87af3d8be10f29f2d5c69af17a9455c90df73 /dev/Kernel/StorageKit | |
| parent | aa8a096ad429640e752d69a89c572da35493d4c0 (diff) | |
NeOS: Namespace change from 'Kernel' to 'NeOS'
ADD: Start defining the Workstation's HPFS (High-Performance File System)
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/StorageKit')
| -rw-r--r-- | dev/Kernel/StorageKit/AHCI.h | 4 | ||||
| -rw-r--r-- | dev/Kernel/StorageKit/ATA.h | 4 | ||||
| -rw-r--r-- | dev/Kernel/StorageKit/NVME.h | 4 | ||||
| -rw-r--r-- | dev/Kernel/StorageKit/PRDT.h | 6 | ||||
| -rw-r--r-- | dev/Kernel/StorageKit/StorageKit.h | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/dev/Kernel/StorageKit/AHCI.h b/dev/Kernel/StorageKit/AHCI.h index 226cb86c..6adab614 100644 --- a/dev/Kernel/StorageKit/AHCI.h +++ b/dev/Kernel/StorageKit/AHCI.h @@ -10,7 +10,7 @@ #include <KernelKit/DriveMgr.h> #include <NewKit/OwnPtr.h> -namespace Kernel +namespace NeOS { class AHCIDeviceInterface NE_DEVICE<MountpointInterface*> { @@ -30,4 +30,4 @@ namespace Kernel private: void (*fCleanup)(void) = {nullptr}; }; -} // namespace Kernel +} // namespace NeOS diff --git a/dev/Kernel/StorageKit/ATA.h b/dev/Kernel/StorageKit/ATA.h index e8c2ab67..0de90897 100644 --- a/dev/Kernel/StorageKit/ATA.h +++ b/dev/Kernel/StorageKit/ATA.h @@ -11,7 +11,7 @@ #include <NewKit/OwnPtr.h> #include <NewKit/Utils.h> -namespace Kernel +namespace NeOS { /// @brief ATA device interface type. class ATADeviceInterface : public IDeviceObject<MountpointInterface*> @@ -36,4 +36,4 @@ namespace Kernel private: void (*fCleanup)(void) = {nullptr}; }; -} // namespace Kernel +} // namespace NeOS diff --git a/dev/Kernel/StorageKit/NVME.h b/dev/Kernel/StorageKit/NVME.h index e6c968d6..6b7cc1fd 100644 --- a/dev/Kernel/StorageKit/NVME.h +++ b/dev/Kernel/StorageKit/NVME.h @@ -9,7 +9,7 @@ #include <KernelKit/DeviceMgr.h> #include <KernelKit/DriveMgr.h> -namespace Kernel +namespace NeOS { class NVMEDeviceInterface final NE_DEVICE<MountpointInterface*> { @@ -31,4 +31,4 @@ namespace Kernel private: Void (*fCleanup)(Void) = {nullptr}; }; -} // namespace Kernel +} // namespace NeOS diff --git a/dev/Kernel/StorageKit/PRDT.h b/dev/Kernel/StorageKit/PRDT.h index 603d4f23..40ba11e0 100644 --- a/dev/Kernel/StorageKit/PRDT.h +++ b/dev/Kernel/StorageKit/PRDT.h @@ -10,9 +10,9 @@ #include <KernelKit/PCI/Iterator.h> #include <NewKit/Ref.h> -#define kPrdtTransferSize (sizeof(Kernel::UShort)) +#define kPrdtTransferSize (sizeof(NeOS::UShort)) -namespace Kernel +namespace NeOS { /// @brief Tranfer information about PRD. enum kPRDTTransfer @@ -33,4 +33,4 @@ namespace Kernel void construct_prdt(Ref<PRDT>& prd); EXTERN_C Int32 kPRDTTransferStatus; -} // namespace Kernel +} // namespace NeOS diff --git a/dev/Kernel/StorageKit/StorageKit.h b/dev/Kernel/StorageKit/StorageKit.h index 954d368b..a0f1a2d1 100644 --- a/dev/Kernel/StorageKit/StorageKit.h +++ b/dev/Kernel/StorageKit/StorageKit.h @@ -10,7 +10,7 @@ #define kDriveSectorSizeSSD (512U) #define kDriveSectorSizeOptical (2048) -namespace Kernel +namespace NeOS { template <typename T> class IDeviceObject; @@ -19,4 +19,4 @@ namespace Kernel class AHCIDeviceInterface; class ATADeviceInterface; class SCSIDeviceInterface; -} // namespace Kernel +} // namespace NeOS |
