Function: profiler-make-calltree

profiler-make-calltree is a byte-compiled function defined in profiler.el.gz.

Signature

(profiler-make-calltree &key ENTRY COUNT COUNT-PERCENT PARENT CHILDREN)

Documentation

Constructor for objects of type profiler-calltree.

Source Code

;; Defined in /usr/src/emacs/lisp/profiler.el.gz
;;; Calltrees

(cl-defstruct (profiler-calltree (:constructor profiler-make-calltree))
  entry
  (count 0) (count-percent "")
  parent children)