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: v7.4.12~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b8344d4759fc15c905aa4cb8a92cbf75aa3fc54;p=gc Fix include gc_gcj.h in thread_local_alloc.c (back-port of commit 60d9632a from 'master') 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 e397f530..f54cf974 100644 --- a/thread_local_alloc.c +++ b/thread_local_alloc.c @@ -217,7 +217,7 @@ GC_API GC_ATTR_MALLOC void * GC_CALL GC_malloc_atomic(size_t bytes) # include "atomic_ops.h" /* for AO_compiler_barrier() */ -# 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 */