-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sched: Clarify init and policy selection routine
`sched_select()` explicitly work as a scheduler initialization routine. It does the following tasks 1) select scheduler policy 2) initialize relative scheduler structure for specified policy. However, we seperate it into two funcs. The one is `sched_init()` and the other one is still `sched_select`. It would also meet the expected behavior within `start_kernel`. We expect a function to initialize the scheduler relative structure and then select the specified policy via `sched_select()`. `start_kernel()`. closed #43
- Loading branch information
Showing
3 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters