From 1cbc3315325284b79b3a37ce2b5a7cd9aad42089 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 28 Jan 2019 07:03:37 -0700 Subject: [PATCH] unbreak no-places, no-futures build --- racket/src/racket/src/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/src/racket/src/thread.c b/racket/src/racket/src/thread.c index 0d27a63049..95ef1dfa95 100644 --- a/racket/src/racket/src/thread.c +++ b/racket/src/racket/src/thread.c @@ -105,10 +105,10 @@ THREAD_LOCAL_DECL(int scheme_did_gc_count); THREAD_LOCAL_DECL(static intptr_t process_time_at_swap); THREAD_LOCAL_DECL(static intptr_t max_gc_pre_used_bytes); -THREAD_LOCAL_DECL(static intptr_t max_code_page_used_bytes); #ifdef MZ_PRECISE_GC THREAD_LOCAL_DECL(static int num_major_garbage_collections); THREAD_LOCAL_DECL(static int num_minor_garbage_collections); +THREAD_LOCAL_DECL(static intptr_t max_code_page_total); #endif #ifdef RUNSTACK_IS_GLOBAL