Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
22e573f3
by Raymond Toy at 2021-01-12T16:44:14-08:00
-
3593ca90
by Raymond Toy at 2021-01-13T01:05:13+00:00
1 changed file:
Changes:
... | ... | @@ -7722,7 +7722,7 @@ static void |
7722 | 7722 |
garbage_collect_generation(int generation, int raise)
|
7723 | 7723 |
{
|
7724 | 7724 |
unsigned long i;
|
7725 |
- unsigned long read_only_space_size, static_space_size;
|
|
7725 |
+ unsigned long static_space_size;
|
|
7726 | 7726 |
|
7727 | 7727 |
#if defined(i386) || defined(__x86_64)
|
7728 | 7728 |
invalid_stack_start = (void *) control_stack;
|
... | ... | @@ -7865,17 +7865,6 @@ garbage_collect_generation(int generation, int raise) |
7865 | 7865 |
printf("Done scavenging the scavenger hooks.\n");
|
7866 | 7866 |
#endif
|
7867 | 7867 |
|
7868 |
-#if 0
|
|
7869 |
- if (SymbolValue(SCAVENGE_READ_ONLY_SPACE) != NIL) {
|
|
7870 |
- read_only_space_size =
|
|
7871 |
- (lispobj *) SymbolValue(READ_ONLY_SPACE_FREE_POINTER) -
|
|
7872 |
- read_only_space;
|
|
7873 |
- fprintf(stderr, "Scavenge read only space: %ld bytes\n",
|
|
7874 |
- read_only_space_size * sizeof(lispobj));
|
|
7875 |
- scavenge(read_only_space, read_only_space_size);
|
|
7876 |
- }
|
|
7877 |
-#endif
|
|
7878 |
- |
|
7879 | 7868 |
static_space_size = (lispobj *) SymbolValue(STATIC_SPACE_FREE_POINTER)
|
7880 | 7869 |
- static_space;
|
7881 | 7870 |
if (gencgc_verbose > 1)
|