10 lines
No EOL
268 B
Markdown
10 lines
No EOL
268 B
Markdown
|
|
What determines the **current priority** of a thread holding a lock under Priority Inheritance?
|
|
|
|
---
|
|
|
|
📈 It is the **higher** of:
|
|
|
|
1. Its own assigned priority.
|
|
2. The priority of the **highest-priority thread** currently blocked and waiting for that same lock.
|
|
|