Modifying constructor for vl-waitstmt structures.
(change-vl-waitstmt x [:condition <condition>] [:body <body>] [:atts <atts>])
This is an often useful alternative to make-vl-waitstmt.
We construct a new vl-waitstmt structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-waitstmt (x &rest args) (std::change-aggregate 'vl-waitstmt x args '((:condition . vl-waitstmt->condition) (:body . vl-waitstmt->body) (:atts . vl-waitstmt->atts)) 'change-vl-waitstmt 'remake-vl-waitstmt))