From WikiChip
resident set size
Revision as of 06:45, 7 February 2014 by 65.78.114.251 (talk) (Created page with "The '''resident set size''' ('''RSS''') is the amount of space of physical memory (RAM) held by a process. The value is typically specified in bytes or pages. ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The resident set size (RSS) is the amount of space of physical memory (RAM) held by a process. The value is typically specified in bytes or pages. If the full amount of space required by a process exceeds the RSS, the remaining portion is typically stored in swap.

The peak resident set size (Peak RSS) refers to the peak amount of memory a process has had up to now.

Overview

In well-configured operating system, the RSS, which is typically specified in pages, should equal the process' working set. Because the exact working set size often cannot be calculated, a processes usually have more pages than needed for its working set. While most systems today do not employee a working-set model due to its lack of accurate information about the reference pattern of a process, they do keep track of the resident set size. The use of RSS is often used in making decisions on whether the system had enough space to swap the process when it entered the ready queue.

See also