mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:17:35 +00:00
Kernel: Move Spinlock functions back to arch independent Locking folder
Now that the Spinlock code is not dependent on architectural specific code anymore, we can move it back to the Locking folder. This also means that the Spinlock implemenation is now used for the aarch64 kernel.
This commit is contained in:
parent
c9118de5a6
commit
026f37b031
6 changed files with 75 additions and 116 deletions
|
@ -50,6 +50,14 @@ void Mutex::unlock()
|
|||
|
||||
}
|
||||
|
||||
// LockRank
|
||||
namespace Kernel {
|
||||
|
||||
void track_lock_acquire(LockRank) { }
|
||||
void track_lock_release(LockRank) { }
|
||||
|
||||
}
|
||||
|
||||
// Inode
|
||||
namespace Kernel {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue