mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 22:01:36 -08:00
Undo previous garbage collector change.
This commit is contained in:
parent
07270b58d0
commit
2908aabbbc
1 changed files with 3 additions and 3 deletions
|
|
@ -1234,15 +1234,15 @@ ecl_mark_env(struct cl_env_struct *env)
|
|||
{
|
||||
#if 1
|
||||
if (env->stack) {
|
||||
GC_push_conditional((void *)env->stack, (void *)env->stack_top, 0);
|
||||
GC_push_conditional((void *)env->stack, (void *)env->stack_top, 1);
|
||||
GC_set_mark_bit((void *)env->stack);
|
||||
}
|
||||
if (env->frs_top) {
|
||||
GC_push_conditional((void *)env->frs_org, (void *)(env->frs_top+1), 0);
|
||||
GC_push_conditional((void *)env->frs_org, (void *)(env->frs_top+1), 1);
|
||||
GC_set_mark_bit((void *)env->frs_org);
|
||||
}
|
||||
if (env->bds_top) {
|
||||
GC_push_conditional((void *)env->bds_org, (void *)(env->bds_top+1), 0);
|
||||
GC_push_conditional((void *)env->bds_org, (void *)(env->bds_top+1), 1);
|
||||
GC_set_mark_bit((void *)env->bds_org);
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue