Resource management: Difference between revisions

From Computer Science Wiki
No edit summary
Line 10: Line 10:
* [[Computer resources]]
* [[Computer resources]]


=== Role of the operating system ====
=== Role of the operating system ===


* [[Operating Systems]]
* [[Operating Systems]]

Revision as of 16:55, 12 April 2016

Resource Management[1]

In computer programming, resource management refers to techniques for managing resources (components with limited availability). It includes both preventing resource leaks (releasing a resource when a process has finished using it) and dealing with resource contention (when multiple processes wish to access a limited resource). Resource leaks are an issue in sequential computing, while resource contention is an issue in concurrent computing. On many systems the operating system reclaims resources after the process makes the exit system call.[2]


Big ideas in resources management

System resources

Role of the operating system

References