Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix context switch when time slicing is off (#568)
* Fix context switch when time slicing is off When time slicing is off, context switch should only happen when a task with priority higher than the currently executing one is unblocked. Earlier the code was invoking a context switch even when a task with priority equal the currently executing task was unblocked. This commit fixes the code to only do a context switch when a higher priority task is unblocked. Signed-off-by: Gaurav Aggarwal <[email protected]>
- Loading branch information