Handbook
Glossary
save-image ( path -- )
Factor handbook
»
The implementation
»
Images
Prev:
save ( -- )
Next:
save-image-and-exit ( path -- )
Vocabulary
memory
Inputs
path
a pathname string
Outputs
None
Word description
Saves a snapshot of the heap to the given file, overwriting the file if it already exists.
See also
save
,
save-image-and-exit
Definition
USING:
io.backend
memory.private
;
IN:
memory
:
save-image
( path -- )
normalize-path
saving-path
f
(save-image)
;