Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find specifics about Windows 10's process scheduling?

I'm currently learning about CPU scheduling and I'm curious about the specifics on Windows 10's scheduling. From what I know a round-robin scheduling is used along with differing levels of priority, but where can I find the specific time quantum numbers for each priority and the specific context switching time? Is this timing determined by the kernel for all machines or is it something that varies based on hardware? If it's based on hardware, can I find out what these values are on my own machine?

like image 267
Vesque Avatar asked Nov 08 '15 01:11

Vesque


People also ask

What scheduling does Windows 10 use?

Windows implements a priority-driven, preemptive scheduling system—the highest-priority runnable (ready) thread always runs, with the caveat that the thread chosen to run might be limited by the processors on which the thread is allowed to run, a phenomenon called processor affinity.

What is process scheduling in Windows 10?

Definition. The process scheduling is the activity of the process manager that handles the removal of the running process from the CPU and the selection of another process on the basis of a particular strategy. Process scheduling is an essential part of a Multiprogramming operating systems.

How do I see what processes are running on Windows 10?

Task Manager can be opened in a number of ways, but the simplest is to select Ctrl+Alt+Delete, and then select Task Manager. In Windows, first click More details to expand the information displayed. From the Processes tab, select Details to see the process ID listed in the PID column. Click on any column name to sort.

Which scheduling algorithm is used in Windows OS?

Windows uses a round-robin technique with a multi-level feedback queue for priority scheduling ever since NT, Though in Vista there were some smart heuristic improvements to ensure that some processes, such as the disk defragmenter, are at a lower priority in order to not interfer with foreground processes.


1 Answers

I was surprised to not find some recent MSDN article as the top result in Google, but here is something from 1997: http://windowsitpro.com/systems-management/inside-windows-nt-scheduler-part-1

You'd be surprised how much stays the same, but it's safe to say there have been changes over the years.

Here is the MSDN reference on scheduling. It might be a good overview/starting point: https://msdn.microsoft.com/en-us/library/windows/desktop/ms685096(v=vs.85).aspx

like image 72
modal_dialog Avatar answered Sep 19 '22 20:09

modal_dialog