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
diff options
context:
space:
mode:
authorRobert Nagy <robert@openbsd.org>2010-11-29 17:56:37 +0300
committerZoltan Varga <vargaz@gmail.com>2010-11-29 19:05:46 +0300
commit065506369b2f69c1104e6059ae884a205b414273 (patch)
treeda4ab0b7163f86cd4a17482d88cb869b6ebcc712 /libgc/pthread_stop_world.c
parentf2e095f92cd1829f515e014779378240d3ae0e8e (diff)
Add support for the internal boehm-gc on OpenBSD
Diffstat (limited to 'libgc/pthread_stop_world.c')
-rw-r--r--libgc/pthread_stop_world.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libgc/pthread_stop_world.c b/libgc/pthread_stop_world.c
index 5a1b9f37172..bf2faafe3d6 100644
--- a/libgc/pthread_stop_world.c
+++ b/libgc/pthread_stop_world.c
@@ -2,7 +2,8 @@
#if defined(GC_PTHREADS) && !defined(GC_SOLARIS_THREADS) \
&& !defined(GC_IRIX_THREADS) && !defined(GC_WIN32_THREADS) \
- && !defined(GC_DARWIN_THREADS) && !defined(GC_AIX_THREADS)
+ && !defined(GC_DARWIN_THREADS) && !defined(GC_AIX_THREADS) \
+ && !defined(GC_OPENBSD_THREADS)
#include <signal.h>
#include <semaphore.h>