1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +00:00

Kernel/aarch64: Implement VERIFY_INTERRUPTS_{ENABLED, DISABLED}

This requires to stub `Process::all_instances()`.
This commit is contained in:
Timon Kruiper 2022-08-23 22:24:42 +02:00 committed by Andreas Kling
parent 026f37b031
commit 47af812a23
2 changed files with 13 additions and 7 deletions

View file

@ -13,6 +13,7 @@
#include <Kernel/Memory/SharedInodeVMObject.h>
#include <Kernel/Panic.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Process.h>
#include <Kernel/Random.h>
#include <Kernel/Sections.h>
#include <Kernel/UserOrKernelBuffer.h>
@ -50,6 +51,16 @@ void Mutex::unlock()
}
// Process
namespace Kernel {
SpinlockProtected<Process::List>& Process::all_instances()
{
VERIFY_NOT_REACHED();
}
}
// LockRank
namespace Kernel {