From ba7b3ed69cd24970a28b72c54982735cd120e663 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 28 Mar 2025 19:57:33 +0100 Subject: kernel: breaking: Change namespace from NeOS to Kernel. sched: Fix redundancy in NeKernel's user scheduler macros, refactored the other files using the redundant macros too. part one of a series of commit for NeKernel. Signed-off-by: Amlal El Mahrouss --- dev/modules/ACPI/ACPI.h | 6 +++--- dev/modules/ACPI/ACPIFactoryInterface.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'dev/modules/ACPI') diff --git a/dev/modules/ACPI/ACPI.h b/dev/modules/ACPI/ACPI.h index a4fe2b0e..75c2ad9a 100644 --- a/dev/modules/ACPI/ACPI.h +++ b/dev/modules/ACPI/ACPI.h @@ -13,9 +13,9 @@ #include -#define SDT_OBJECT : public NeOS::SDT +#define SDT_OBJECT : public Kernel::SDT -namespace NeOS +namespace Kernel { class PACKED SDT { @@ -85,6 +85,6 @@ namespace NeOS UInt32 CreatorRevision; UInt32 AddressArr[]; }; -} // namespace NeOS +} // namespace Kernel #endif // !__ACPI__ diff --git a/dev/modules/ACPI/ACPIFactoryInterface.h b/dev/modules/ACPI/ACPIFactoryInterface.h index 06a5c6e9..76819b4e 100644 --- a/dev/modules/ACPI/ACPIFactoryInterface.h +++ b/dev/modules/ACPI/ACPIFactoryInterface.h @@ -12,9 +12,9 @@ #include #include #include -#include +#include -namespace NeOS +namespace Kernel { class PowerFactory; class ACPIFactoryInterface; @@ -54,6 +54,6 @@ namespace NeOS SSizeT fEntries{0UL}; // number of entries, -1 tells that no invalid entries were // found. }; -} // namespace NeOS +} // namespace Kernel #endif // !__MOD_ACPI_H__ -- cgit v1.2.3