Variable: window-tool-bar--memory-use-delta-step1

window-tool-bar--memory-use-delta-step1 is a variable defined in window-tool-bar.el.gz.

Value

(0 0 0 0 0 0 0)

Documentation

Absolute delta of memory use counters during step 1.

This is a list in the same structure as memory-use-counts.

Source Code

;; Defined in /usr/src/emacs/lisp/window-tool-bar.el.gz
;;; Benchmarking code
;;
;; Refreshing the tool bar is computationally simple, but generates a
;; lot of garbage.  So this benchmarking focuses on garbage
;; generation.  Since it has to run after most commands, generating
;; significantly more garbage will cause noticeable performance
;; degradation.
;;
;; The refresh has two steps:
;;
;; Step 1: Look up the <tool-bar> map.
;; Step 2: Generate a Lisp string using text properties for the tool
;; bar string.
;;
;; Additionally, we keep track of the percentage of commands that
;; actually created a refresh.
(defvar window-tool-bar--memory-use-delta-step1 (make-list 7 0)
  "Absolute delta of memory use counters during step 1.
This is a list in the same structure as `memory-use-counts'.")