Tag: scheduler
-
Process Scheduling In Linux
Scheduling is the action of assigning resources to perform tasks.We will mainly focus on scheduling where our resource is a processor or multiple processors, and the task will be a thread or a process that needs to be executed. The act of scheduling is carried out by a process called scheduler.The scheduler goals are to […]
Eliran Turgeman
-
CPU Scheduling Algorithms
Before we jump into the good stuff, let’s ask ourselves What is CPU Scheduling and why do we need that? You did? Good. Moving on now (bad joke). What & Why CPU Scheduling is the ‘act’ of determining which process should get the CPU next and start or continue executing.The scheduler is a process of itself controlling […]
Eliran Turgeman