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
08f07276
Commit
08f07276
authored
33 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Moved a few #endif's to eliminate spurious warnings.
parent
660c9c16
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
ldb/gc.c
+3
-3
3 additions, 3 deletions
ldb/gc.c
with
3 additions
and
3 deletions
ldb/gc.c
+
3
−
3
View file @
08f07276
/*
/*
* Stop and Copy GC based on Cheney's algorithm.
* Stop and Copy GC based on Cheney's algorithm.
*
*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/gc.c,v 1.2
6
1991/0
3/23 14:45:15
wlott Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/gc.c,v 1.2
7
1991/0
5/05 02:20:38
wlott Exp $
*
*
* Written by Christopher Hoover.
* Written by Christopher Hoover.
*/
*/
...
@@ -140,8 +140,8 @@ collect_garbage()
...
@@ -140,8 +140,8 @@ collect_garbage()
double
real_time
,
system_time
,
user_time
;
double
real_time
,
system_time
,
user_time
;
double
percent_retained
,
gc_rate
;
double
percent_retained
,
gc_rate
;
unsigned
long
size_discarded
;
unsigned
long
size_discarded
;
#endif
unsigned
long
size_retained
;
unsigned
long
size_retained
;
#endif
lispobj
*
current_static_space_free_pointer
;
lispobj
*
current_static_space_free_pointer
;
unsigned
long
static_space_size
;
unsigned
long
static_space_size
;
unsigned
long
control_stack_size
,
binding_stack_size
;
unsigned
long
control_stack_size
,
binding_stack_size
;
...
@@ -261,8 +261,8 @@ collect_garbage()
...
@@ -261,8 +261,8 @@ collect_garbage()
#ifdef PRINTNOISE
#ifdef PRINTNOISE
size_discarded
=
(
from_space_free_pointer
-
from_space
)
*
sizeof
(
lispobj
);
size_discarded
=
(
from_space_free_pointer
-
from_space
)
*
sizeof
(
lispobj
);
#endif
size_retained
=
(
new_space_free_pointer
-
new_space
)
*
sizeof
(
lispobj
);
size_retained
=
(
new_space_free_pointer
-
new_space
)
*
sizeof
(
lispobj
);
#endif
/* Zero stack. */
/* Zero stack. */
#ifdef PRINTNOISE
#ifdef PRINTNOISE
...
...
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