Evaluates code with interrupts blocked.
mp
with-interrupts-blocked &body body => results
body
Code
results
Values returned by evaluating body .
Evaluates body with interrupts blocked. This actually expands to
(mp:allowing-block-interrupts t ,@ body )
which means it also allows you to change the blocking of interrupts.
See the entry for allowing-block-interrupts for full details.
allowing-block-interrupts