There was an error fetching the commit references. Please try again later.
Kernel/Mutex: Implemented priority inheritance.
The implementation is based on reverse engineering of the 3DS's kernel. A mutex holder's priority will be temporarily boosted to the best priority among any threads that want to acquire any of its held mutexes. When the holder releases the mutex, it's priority will be boosted to the best priority among the threads that want to acquire any of its remaining held mutexes.
Showing
- src/core/hle/kernel/kernel.h 1 addition, 1 deletionsrc/core/hle/kernel/kernel.h
- src/core/hle/kernel/mutex.cpp 45 additions, 13 deletionssrc/core/hle/kernel/mutex.cpp
- src/core/hle/kernel/mutex.h 2 additions, 5 deletionssrc/core/hle/kernel/mutex.h
- src/core/hle/kernel/thread.cpp 3 additions, 3 deletionssrc/core/hle/kernel/thread.cpp
- src/core/hle/svc.cpp 0 additions, 9 deletionssrc/core/hle/svc.cpp
Loading
Please register or sign in to comment