in-static-area
Macro
- Summary
-
- Allocates the objects produced by the specified forms to the static area.
- Package
system
- Signature
in-static-area &rest body => result
- Arguments
-
- body
The forms for which you want the garbage collector to allocate space in the static area.
- Values
-
- result
The result of executing body.
- Description
-
- Allocates the objects produced by the specified forms to the static area. Objects in the static area are not moved, though they are garbage collected when there is no longer a pointer to the object.
- Example
(system:in-static-area (make-string 10))
- See also
-
enlarge-static
in-malloc
staticp