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-20 20:56:52 +0300
committerPaolo Molaro <lupus@oddwiz.org>2006-03-20 20:56:52 +0300
commit9a7815d6749f7d356e3a6cc0ec75ab9082db6593 (patch)
tree9bed147019b76a7056c3c55f08c311c254bc7b6e /libgc
parentdb183b569a1ed6ec3ae7411d7d691acfcc580826 (diff)
Mon Mar 20 18:56:21 CET 2006 Paolo Molaro <lupus@ximian.com>
* include/gc.h: enable pthread redirection on darwin, too. svn path=/trunk/mono/; revision=58193
Diffstat (limited to 'libgc')
-rw-r--r--libgc/ChangeLog4
-rw-r--r--libgc/include/gc.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/libgc/ChangeLog b/libgc/ChangeLog
index b030f875835..47ae57cd633 100644
--- a/libgc/ChangeLog
+++ b/libgc/ChangeLog
@@ -1,4 +1,8 @@
+Mon Mar 20 18:56:21 CET 2006 Paolo Molaro <lupus@ximian.com>
+
+ * include/gc.h: enable pthread redirection on darwin, too.
+
Thu Feb 9 16:20:55 CET 2006 Paolo Molaro <lupus@ximian.com>
* os_dep.c, include/private/gcconfig.h, darwin_stop_world.c:
diff --git a/libgc/include/gc.h b/libgc/include/gc.h
index 84d5735a8ef..e210f13c02e 100644
--- a/libgc/include/gc.h
+++ b/libgc/include/gc.h
@@ -894,7 +894,7 @@ GC_API void (*GC_is_visible_print_proc)
/* thread library calls. We do that here by macro defining them. */
#if !defined(GC_USE_LD_WRAP) && \
- (defined(GC_PTHREADS) || defined(GC_SOLARIS_THREADS))
+ (defined(GC_PTHREADS) || defined(GC_SOLARIS_THREADS) || defined(GC_DARWIN_THREADS) || defined(GC_MACOSX_THREADS))
#if defined(_IN_LIBGC) || defined(USE_INCLUDED_LIBGC)
# include "gc_pthread_redirects.h"
#else