mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-03 11:16:36 +02:00
fixing build for non-timed gc
This commit is contained in:
parent
f256fc219e
commit
2ecbe98aaf
1 changed files with 3 additions and 0 deletions
3
sexp.c
3
sexp.c
|
@ -485,7 +485,10 @@ sexp sexp_make_context (sexp ctx, size_t size, size_t max_size) {
|
|||
sexp_context_saves(res) = NULL;
|
||||
sexp_context_params(res) = SEXP_NULL;
|
||||
sexp_context_last_fp(res) = 0;
|
||||
#if SEXP_USE_TIME_GC
|
||||
sexp_context_gc_count(res) = 0;
|
||||
sexp_context_gc_usecs(res) = 0;
|
||||
#endif
|
||||
sexp_context_tracep(res) = 0;
|
||||
sexp_context_timeoutp(res) = 0;
|
||||
sexp_context_tailp(res) = 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue