littlekernel / lk

LK embedded kernel
MIT License
3.11k stars 613 forks source link

priority inheritance support for mutex #300

Open sachindia86 opened 3 years ago

sachindia86 commented 3 years ago

@travisg does LK supports solution to priority inversion problem for mutex?

travisg commented 2 years ago

It doesn't though that'd be a fairly simple addition. Would have to add a priority sorted wait queue that the mutex (and other locks) would use.