All Manuals > LispWorks User Guide and Reference Manual > 44 The MP Package

NextPrevUpTopContentsIndex

with-interrupts-blocked

Macro
Summary

Evaluates code with interrupts blocked.

Package

mp

Signature

with-interrupts-blocked &body body => results

Arguments

body

Code

Values

results

Values returned by evaluating body.

Description

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.

See also

allowing-block-interrupts


LispWorks User Guide and Reference Manual - 20 Sep 2017

NextPrevUpTopContentsIndex