diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-07 17:42:32 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-07 17:43:56 +0200 |
| commit | ca83108fd138cc0398f900e6a6c0a53ad51aee31 (patch) | |
| tree | 66146e07671517ab1867663081ec39e348205731 /Private/HALKit | |
| parent | 636a6034a613f98f13848bf4bf1143bf5966dbce (diff) | |
MHR-23: Rework graphics stack, moving to another repository.
- Alongside patches on the FileManager.
- And code improvements on the System API.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/HALKit')
| -rw-r--r-- | Private/HALKit/POWER/HalHart.cxx | 2 | ||||
| -rw-r--r-- | Private/HALKit/POWER/HalThread.cxx | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Private/HALKit/POWER/HalHart.cxx b/Private/HALKit/POWER/HalHart.cxx index 88f5132b..7a33d2d0 100644 --- a/Private/HALKit/POWER/HalHart.cxx +++ b/Private/HALKit/POWER/HalHart.cxx @@ -14,10 +14,12 @@ using namespace NewOS; /// wakes up thread from hang. void rt_wakeup_thread(HAL::StackFramePtr stack) { + NEWOS_UNUSED(stack); } /// @brief makes thread sleep. /// hooks and hangs thread to prevent code from executing. void rt_hang_thread(HAL::StackFramePtr stack) { + NEWOS_UNUSED(stack); } diff --git a/Private/HALKit/POWER/HalThread.cxx b/Private/HALKit/POWER/HalThread.cxx index 592ab6bd..7bb95b4f 100644 --- a/Private/HALKit/POWER/HalThread.cxx +++ b/Private/HALKit/POWER/HalThread.cxx @@ -7,7 +7,7 @@ #include <HALKit/POWER/Processor.hpp> #include <KernelKit/DebugOutput.hpp> -extern "C" NewOS::HAL::StackFramePtr rt_get_current_context() +EXTERN_C NewOS::HAL::StackFramePtr rt_get_current_context() { return nullptr; } |
