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
15347333
Commit
15347333
authored
21 years ago
by
toy
Browse files
Options
Downloads
Patches
Plain Diff
Only x86 has ALLOCATION_POINTER. Use
current_dynamic_space_free_pointer for the other ports. (Is this right?)
parent
5256a270
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lisp/lisp.c
+5
-1
5 additions, 1 deletion
lisp/lisp.c
with
5 additions
and
1 deletion
lisp/lisp.c
+
5
−
1
View file @
15347333
/*
/*
* main() entry point for a stand alone lisp image.
* main() entry point for a stand alone lisp image.
*
*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.3
4
2003/08/1
2 16:41:40 gerd
Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.3
5
2003/08/1
8 20:48:38 toy
Exp $
*
*
*/
*/
...
@@ -565,7 +565,11 @@ int main(int argc, char *argv[], char *envp[])
...
@@ -565,7 +565,11 @@ int main(int argc, char *argv[], char *envp[])
if
(
initial_function_addr
!=
0
)
{
if
(
initial_function_addr
!=
0
)
{
extern
int
image_dynamic_space_size
;
extern
int
image_dynamic_space_size
;
int
allocation_pointer
=
dynamic_0_space
+
(
int
)
&
image_dynamic_space_size
;
int
allocation_pointer
=
dynamic_0_space
+
(
int
)
&
image_dynamic_space_size
;
#ifdef i386
SetSymbolValue
(
ALLOCATION_POINTER
,
(
lispobj
)
allocation_pointer
);
SetSymbolValue
(
ALLOCATION_POINTER
,
(
lispobj
)
allocation_pointer
);
#else
current_dynamic_space_free_pointer
=
(
lispobj
)
allocation_pointer
;
#endif
}
else
{
}
else
{
initial_function
=
load_core_file
(
core
);
initial_function
=
load_core_file
(
core
);
}
}
...
...
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