Resource management: Difference between revisions
(Created page with "<center> <blockquote style="padding: 5px; background-color: #FFF8DC; border: solid thin gray;"> File:Exclamation.png This is one of '''the most important ideas''' you c...") |
No edit summary |
||
Line 1: | Line 1: | ||
[[file:resource.png|right|frame|Resource Management<ref>http://www.flaticon.com/</ref>]] | |||
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.<ref>https://en.wikipedia.org/wiki/Resource_management_(computing)</ref> | |||
Line 39: | Line 31: | ||
[[Category:HL]] | [[Category:HL]] | ||
[[Category:problem-solving]] | [[Category:problem-solving]] | ||
Revision as of 15:50, 12 April 2016
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]