summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/HALKit/ARM64/HalSchedulerCore.cpp
blob: b99037aa7964db6ce15aec678a38055c1b9b5581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel

#include <KernelKit/ProcessScheduler.h>

namespace Kernel {
/// @brief Wakes up thread.
/// Wakes up thread from the hang state.
Void mp_wakeup_thread(HAL::StackFrame* stack) {
  NE_UNUSED(stack);
}

/// @brief makes the thread sleep on a loop.
/// hooks and hangs thread to prevent code from executing.
Void mp_hang_thread(HAL::StackFrame* stack) {
  NE_UNUSED(stack);
}
}  // namespace Kernel