summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/HALKit/RISCV/AP.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/kernel/HALKit/RISCV/AP.h')
-rw-r--r--dev/kernel/HALKit/RISCV/AP.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/dev/kernel/HALKit/RISCV/AP.h b/dev/kernel/HALKit/RISCV/AP.h
index c198a404..33ca3192 100644
--- a/dev/kernel/HALKit/RISCV/AP.h
+++ b/dev/kernel/HALKit/RISCV/AP.h
@@ -15,15 +15,15 @@
#include <NewKit/Defines.h>
-namespace NeOS
+namespace Kernel
{
typedef Int64 hal_ap_kind;
typedef struct HAL_HARDWARE_THREAD
{
- NeOS::UIntPtr fStartAddress;
- NeOS::UInt8 fPrivleged : 1;
- NeOS::UInt32 fPageMemoryFlags;
+ Kernel::UIntPtr fStartAddress;
+ Kernel::UInt8 fPrivleged : 1;
+ Kernel::UInt32 fPageMemoryFlags;
hal_ap_kind fIdentNumber;
} HAL_HARDWARE_THREAD;
@@ -31,5 +31,5 @@ namespace NeOS
/// @param hart the hart
/// @param epc the pc.
/// @return
- EXTERN_C NeOS::Void hal_set_pc_to_hart(HAL_HARDWARE_THREAD* hart, NeOS::VoidPtr epc);
-} // namespace NeOS
+ EXTERN_C Kernel::Void hal_set_pc_to_hart(HAL_HARDWARE_THREAD* hart, Kernel::VoidPtr epc);
+} // namespace Kernel