summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/Timer.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-05 01:59:36 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-04-05 02:01:15 +0200
commit21fe8d0b7d48e92ba0d45c084bf868c94bb67cd7 (patch)
tree4193f80c02ce03b2e02d6c2ef1a1a0526ea7b8fc /Private/KernelKit/Timer.hpp
parenta45872967f07906297782cd04223706cfc326219 (diff)
HAL/PPC: Adding support for PowerPC, implemented rt_do_context_switch.
Refactor: Everything which starts with HCORE_ is NEWOS_ now. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/KernelKit/Timer.hpp')
-rw-r--r--Private/KernelKit/Timer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/KernelKit/Timer.hpp b/Private/KernelKit/Timer.hpp
index 87cb915d..dbd29af1 100644
--- a/Private/KernelKit/Timer.hpp
+++ b/Private/KernelKit/Timer.hpp
@@ -24,7 +24,7 @@ class HardwareTimerInterface
virtual ~HardwareTimerInterface() = default;
public:
- HCORE_COPY_DEFAULT(HardwareTimerInterface);
+ NEWOS_COPY_DEFAULT(HardwareTimerInterface);
public:
virtual Int32 Wait() noexcept;
@@ -37,7 +37,7 @@ class HardwareTimer final : public HardwareTimerInterface
~HardwareTimer() override;
public:
- HCORE_COPY_DEFAULT(HardwareTimer);
+ NEWOS_COPY_DEFAULT(HardwareTimer);
public:
Int32 Wait() noexcept override;