Function: profiler-profile-type
profiler-profile-type is a byte-compiled function defined in
profiler.el.gz.
Signature
(profiler-profile-type CL-X)
Documentation
Access slot "type" of profiler-profile struct CL-X.
Source Code
;; Defined in /usr/src/emacs/lisp/profiler.el.gz
;;; Profiles
(cl-defstruct (profiler-profile (:type vector)
(:constructor profiler-make-profile))
(tag 'profiler-profile)
(version profiler-version)
;; - `type' has a value indicating the kind of profile (`memory' or `cpu').
;; - `log' indicates the profile log.
;; - `timestamp' has a value giving the time when the profile was obtained.
;; - `diff-p' indicates if this profile represents a diff between two profiles.
type log timestamp diff-p)