Operating Systems management techniques: Difference between revisions

From Computer Science Wiki
No edit summary
Line 1: Line 1:
[[file:resource.png|right|frame|Resource Management<ref>http://www.flaticon.com/</ref>]]
[[file:resource.png|right|frame|Resource Management<ref>http://www.flaticon.com/</ref>]]


We have learned <ref>https://www.lifewire.com/what-is-a-system-resource-2626016</ref>
An operating system must


== OS resource management techniques ==  
== OS resource management techniques ==  
Line 12: Line 12:
| scheduling || Scheduling is the method by which work is assigned to resources that complete the work.<ref>https://en.wikipedia.org/wiki/Scheduling_(computing)</ref>. There are many different scheduling strategies. The main purposes of scheduling algorithms are to minimize resource starvation and to ensure fairness amongst the parties utilizing the resources<ref>https://en.wikipedia.org/wiki/Scheduling_(computing)#Scheduling_disciplines</ref>
| scheduling || Scheduling is the method by which work is assigned to resources that complete the work.<ref>https://en.wikipedia.org/wiki/Scheduling_(computing)</ref>. There are many different scheduling strategies. The main purposes of scheduling algorithms are to minimize resource starvation and to ensure fairness amongst the parties utilizing the resources<ref>https://en.wikipedia.org/wiki/Scheduling_(computing)#Scheduling_disciplines</ref>
|-
|-
| policies || Given a particular task, policy refers to what needs to be done (i.e. activities to perform) and mechanism refers to how to do it (i.e. implementation to enforce policy).<ref>http://www.8bitavenue.com/2016/12/policy-vs-mechanism-in-operating-system/</ref>
| policies || Given a particular task, policy refers to what needs to be done (i.e. activities to perform) and mechanism refers to how to do it (i.e. implementation to enforce policy).<ref>http://www.8bitavenue.com/2016/12/policy-vs-mechanism-in-operating-system/</ref>. Put another way, the separation of mechanism and policy is a design principle in computer science. It states that mechanisms (those parts of a system implementation that control the authorization of operations and the allocation of resources) should not dictate (or overly restrict) the policies according to which decisions are made about which operations to authorize, and which resources to allocate.<ref>https://en.wikipedia.org/wiki/Separation_of_mechanism_and_policy</ref>
|-
|-
| multitasking || foo
| multitasking || foo

Revision as of 23:45, 6 December 2017

Resource Management[1]

An operating system must

OS resource management techniques[edit]

Resource management is the dynamic allocation and de-allocation by an operating system of processor cores, memory pages, and various types of bandwidth to computations that compete for those resources. The objective is to allocate resources so as to optimize responsiveness subject to the finite resources available. [2]

Technique Description
scheduling Scheduling is the method by which work is assigned to resources that complete the work.[3]. There are many different scheduling strategies. The main purposes of scheduling algorithms are to minimize resource starvation and to ensure fairness amongst the parties utilizing the resources[4]
policies Given a particular task, policy refers to what needs to be done (i.e. activities to perform) and mechanism refers to how to do it (i.e. implementation to enforce policy).[5]. Put another way, the separation of mechanism and policy is a design principle in computer science. It states that mechanisms (those parts of a system implementation that control the authorization of operations and the allocation of resources) should not dictate (or overly restrict) the policies according to which decisions are made about which operations to authorize, and which resources to allocate.[6]
multitasking foo
virtual memory foo
paging foo
interrupt foo
polling foo

Standards[edit]

  • Outline OS resource management techniques: scheduling, policies, multitasking, virtual memory, paging, interrupt, polling.

References[edit]