Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libgc
diff options
context:
space:
mode:
authorPaolo Molaro <lupus@oddwiz.org>2006-03-21 19:44:24 +0300
committerPaolo Molaro <lupus@oddwiz.org>2006-03-21 19:44:24 +0300
commit1e34b296bc54c286502bfb674efcf18edb8fc66f (patch)
tree2615d7c90ea02d53dee01a5c31d638f35ef9ccb8 /libgc
parent0c40c320e29483c3e3e852513d2b0f0495e0df3d (diff)
Completed fix from Bryan Berg.
svn path=/trunk/mono/; revision=58225
Diffstat (limited to 'libgc')
-rw-r--r--libgc/ChangeLog1
-rw-r--r--libgc/include/gc_pthread_redirects.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/libgc/ChangeLog b/libgc/ChangeLog
index 47ae57cd633..499d2bb345e 100644
--- a/libgc/ChangeLog
+++ b/libgc/ChangeLog
@@ -2,6 +2,7 @@
Mon Mar 20 18:56:21 CET 2006 Paolo Molaro <lupus@ximian.com>
* include/gc.h: enable pthread redirection on darwin, too.
+ * include/gc_pthread_redirects.h: completed from Bryan Berg.
Thu Feb 9 16:20:55 CET 2006 Paolo Molaro <lupus@ximian.com>
diff --git a/libgc/include/gc_pthread_redirects.h b/libgc/include/gc_pthread_redirects.h
index 5cc8d473402..f42b0f6a3e1 100644
--- a/libgc/include/gc_pthread_redirects.h
+++ b/libgc/include/gc_pthread_redirects.h
@@ -46,7 +46,7 @@
#endif /* SOLARIS_THREADS || SOLARIS_PTHREADS */
-#if !defined(GC_USE_LD_WRAP) && defined(GC_PTHREADS) && !defined(GC_SOLARIS_PTHREADS)
+#if !defined(GC_USE_LD_WRAP) && (defined(GC_PTHREADS) || defined(GC_DARWIN_THREADS) || defined(GC_MACOSX_THREADS)) && !defined(GC_SOLARIS_PTHREADS)
/* We treat these similarly. */
# include <pthread.h>
# include <signal.h>