Evaluates code with interrupts blocked.
mp
with-interrupts-blocked &body body => results
body⇩ |
Code. |
results |
Values returned by evaluating body. |
The macro with-interrupts-blocked
evaluates body with interrupts blocked.
It is equivalent to:
(mp:allowing-block-interrupts t ,@body)
which means it also allows you to change the blocking of interrupts inside body.
See the entry for allowing-block-interrupts for full details.
LispWorks® User Guide and Reference Manual - 01 Dec 2021 19:30:51