From 608f44306a6f0d5692f5c81bcbfe7a621ec254ba Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 5 Jul 2024 21:02:52 +0300 Subject: implement bkl + Start out using big kernel lock, apparently seL4 thinks its good enough. I might have a go at using a more fair lock, and possibly moving to more fine-grained locks if I really feel the need to get scalability up. --- include/arch/lock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/arch') diff --git a/include/arch/lock.h b/include/arch/lock.h index 2a94fbf..ea19585 100644 --- a/include/arch/lock.h +++ b/include/arch/lock.h @@ -11,7 +11,7 @@ #if defined(riscv64) #include "../../arch/riscv64/include/lock.h" -#if defined(riscv32) +#elif defined(riscv32) #include "../../arch/riscv32/include/lock.h" #endif -- cgit v1.3