Constructor macro for prof-entry-p structures.
Syntax:
(make-prof-entry [:name <name>] [:tries-succ <tries-succ>] [:tries-fail <tries-fail>] [:frames-succ <frames-succ>] [:frames-fail <frames-fail>])
This is our preferred way to construct prof-entry-p structures. It simply conses together a structure with the specified fields.
This macro generates a new prof-entry-p structure from scratch. See also change-prof-entry, which can "change" an existing structure, instead.
The prof-entry-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-prof-entry instead.
This is an ordinary
Macro:
(defmacro make-prof-entry (&rest args) (std::make-aggregate 'prof-entry args '((:name) (:tries-succ) (:tries-fail) (:frames-succ) (:frames-fail)) 'make-prof-entry nil))