-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Granular Lock for SMP #905
Copy link
Copy link
Open
iotlabtpe/FreeRTOS-Kernel-Granular-Lock
#2Labels
roadmapAn feature currently on the roadmapAn feature currently on the roadmap
Metadata
Metadata
Assignees
Labels
roadmapAn feature currently on the roadmapAn feature currently on the roadmap
Type
Fields
Give feedbackNo fields configured for issues without a type.
Projects
StatusShow more project fields
🏗 In Progress
Current FreeRTOS SMP uses a single lsingle set of locks to guard all critical sections and scheduler suspension. This results in lower performance because of lock contention. This work item involves making the locking more granular by having one lock per kernel object to remove lock contention when different cores are not accessing the same kernel object.