From: Ivan Maidanski Date: Wed, 28 Feb 2018 20:16:36 +0000 (+0300) Subject: Fix include gc_gcj.h in thread_local_alloc.c X-Git-Tag: v8.0.0~315 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60d9632aa467c7ab1bffe2d053874901bef090c3;p=gc Fix include gc_gcj.h in thread_local_alloc.c The #include for the public GC headers should not contain "include/" prefix. * thread_local_alloc.c [GC_GCJ_SUPPORT]: Include "gc_gcj.h" instead of "include/gc_gcj.h". --- diff --git a/thread_local_alloc.c b/thread_local_alloc.c index 66ea876a..92ae9d8e 100644 --- a/thread_local_alloc.c +++ b/thread_local_alloc.c @@ -191,7 +191,7 @@ GC_API GC_ATTR_MALLOC void * GC_CALL GC_malloc_kind(size_t bytes, int knd) #ifdef GC_GCJ_SUPPORT -# include "include/gc_gcj.h" +# include "gc_gcj.h" /* Gcj-style allocation without locks is extremely tricky. The */ /* fundamental issue is that we may end up marking a free list, which */