From 26850e9b9f320d8f607b8cdcadbda1759f90d20d Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Tue, 18 May 2010 09:08:35 -0500 Subject: [PATCH] Add extern prototype for GC_collection_in_progress --- src/racket/gc/gc_dlopen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/racket/gc/gc_dlopen.c b/src/racket/gc/gc_dlopen.c index 51659d1e82..2f9644efdb 100644 --- a/src/racket/gc/gc_dlopen.c +++ b/src/racket/gc/gc_dlopen.c @@ -37,6 +37,8 @@ # undef dlopen # endif + extern GC_bool GC_collection_in_progress(); + /* Make sure we're not in the middle of a collection, and make */ /* sure we don't start any. Returns previous value of GC_dont_gc. */ /* This is invoked prior to a dlopen call to avoid synchronization */