Constructor macro for honsed prof-entry-p structures.
Syntax:
(make-honsed-prof-entry [:name <name>]
[:tries-succ <tries-succ>]
[:tries-fail <tries-fail>]
[:frames-succ <frames-succ>]
[:frames-fail <frames-fail>])
This is identical to make-prof-entry, except that we hons the structure we are creating.
This is an ordinary honsing
Macro:
(defmacro make-honsed-prof-entry (&rest args) (std::make-aggregate 'prof-entry args '((:name) (:tries-succ) (:tries-fail) (:frames-succ) (:frames-fail)) 'make-honsed-prof-entry t))