Variable: proced-medium-memory-usage-threshold
proced-medium-memory-usage-threshold is a customizable variable
defined in proced.el.gz.
Value
0.5
Documentation
The upper bound for medium relative memory usage display in Proced.
When proced-enable-color-flag is non-nil, RSS values denoting a
proportion of memory, relative to total memory, that is less than
this value, but greater than proced-low-memory-usage-threshold,
will be displayed using the proced-memory-medium-usage face.
RSS values denoting a greater proportion than this value will be
displayed using the proced-memory-high-usage face.
This variable was added, or its default value changed, in Emacs 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defcustom proced-medium-memory-usage-threshold 0.5
"The upper bound for medium relative memory usage display in Proced.
When `proced-enable-color-flag' is non-nil, RSS values denoting a
proportion of memory, relative to total memory, that is less than
this value, but greater than `proced-low-memory-usage-threshold',
will be displayed using the `proced-memory-medium-usage' face.
RSS values denoting a greater proportion than this value will be
displayed using the `proced-memory-high-usage' face."
:type 'float
:version "29.1")