mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:47:46 +00:00
Kernel: Stub more functions to progress aarch64 build
This commit is contained in:
parent
f9ab02429b
commit
32f4c8df6c
5 changed files with 36 additions and 1 deletions
|
@ -215,6 +215,28 @@ public:
|
|||
return *g_current_processor;
|
||||
}
|
||||
|
||||
template<IteratorFunction<Processor&> Callback>
|
||||
static inline IterationDecision for_each(Callback)
|
||||
{
|
||||
TODO_AARCH64();
|
||||
}
|
||||
|
||||
template<VoidFunction<Processor&> Callback>
|
||||
static inline IterationDecision for_each(Callback)
|
||||
{
|
||||
TODO_AARCH64();
|
||||
}
|
||||
|
||||
u64 time_spent_idle() const
|
||||
{
|
||||
TODO_AARCH64();
|
||||
}
|
||||
|
||||
static u32 count()
|
||||
{
|
||||
TODO_AARCH64();
|
||||
}
|
||||
|
||||
// FIXME: Move this into generic Processor class, when there is such a class.
|
||||
ALWAYS_INLINE static bool is_bootstrap_processor()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue