Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
b73c9685
Commit
b73c9685
authored
34 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Added the :ENABLE-GC option to SAVE-LISP so that GC can be turned on
before switch demons are run (such as -edit.)
parent
6b714937
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/save.lisp
+8
-2
8 additions, 2 deletions
code/save.lisp
with
8 additions
and
2 deletions
code/save.lisp
+
8
−
2
View file @
b73c9685
...
...
@@ -8,7 +8,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.
3
1990/
09/27 02:24:19 wlott
Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.
4
1990/
10/03 15:55:58 ram
Exp $
;;;
;;; Dump the current lisp image into a core file. All the real work is done
;;; be C.
...
...
@@ -57,6 +57,7 @@
#'
(
lambda
()
(
throw
'top-level-catcher
nil
)))
(
load-init-file
t
)
(
enable-gc
t
)
(
print-herald
t
)
(
process-command-line
t
))
"Saves a CMU Common Lisp core image in the file of the specified name. The
...
...
@@ -86,7 +87,10 @@
file is resumed.
:print-herald
If true, print out the lisp system herald when starting."
If true, print out the lisp system herald when starting.
:enable-gc
If true, turn GC on if it was off."
(
if
purify
(
purify
:root-structures
root-structures
:constants
constants
)
...
...
@@ -124,6 +128,8 @@
"init"
)))
(
load
(
merge-pathnames
name
(
user-homedir-pathname
))
:if-does-not-exist
nil
))))
(
when
enable-gc
(
gc-on
))
(
when
print-herald
(
print-herald
))
(
when
process-command-line
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment