From 7174b645e4fa7d36406e704f1ed6d9d9264f221f Mon Sep 17 00:00:00 2001 From: Christian Thalinger Date: Thu, 5 Jun 2008 17:36:04 +0200 Subject: [PATCH] * src/threads/posix/thread-posix.c: Added a comment why we include Boehm's gc.h. --- src/threads/posix/thread-posix.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/threads/posix/thread-posix.c b/src/threads/posix/thread-posix.c index cb8d82ff5..9ed9ad8e8 100644 --- a/src/threads/posix/thread-posix.c +++ b/src/threads/posix/thread-posix.c @@ -105,6 +105,8 @@ # define GC_DARWIN_THREADS # endif # if defined(ENABLE_GC_BOEHM) +/* We need to include Boehm's gc.h here because it overrides + pthread_create and friends. */ # include "mm/boehm-gc/include/gc.h" # endif -- 2.25.1