Merge pull request #2338 from BogdanovKirill/httpwritefix3
[mono.git] / mono / utils / gc_wrapper.h
index 6da0fb2fc8d9c7a98fafaf697b2fc0e9b8e4d501..a90d27c064f4d60458a09512fc5cdf32ef8a9b82 100644 (file)
@@ -25,7 +25,7 @@
         * it if it is the included one.
         */
        
-#      if defined(HAVE_KW_THREAD) && defined(USE_INCLUDED_LIBGC) && !defined(__powerpc__)
+#      if defined(HAVE_KW_THREAD) && !defined(__powerpc__)
         /* The local alloc stuff is in pthread_support.c, but solaris uses solaris_threads.c */
         /* It is also disabled on solaris/x86 by libgc/configure.ac */
         /* 
 #       endif
 #      endif
 
-#      ifdef HAVE_GC_GC_H
-#              include <gc/gc.h>
-#              include <gc/gc_typed.h>
-#              include <gc/gc_mark.h>
-#              include <gc/gc_gcj.h>
-#      elif defined(HAVE_GC_H) || defined(USE_INCLUDED_LIBGC)
-#              include <gc.h>
-#              include <gc_typed.h>
-#              include <gc_mark.h>
-#              include <gc_gcj.h>
-#      else
-#              error have boehm GC without headers, you probably need to install them by hand
-#      endif
+#      define GC_INSIDE_DLL
+#      include <gc.h>
+#      include <gc_typed.h>
+#      include <gc_mark.h>
+#      include <gc_gcj.h>
 
 #if defined(HOST_WIN32)
 #define CreateThread GC_CreateThread
 #else /* not Boehm and not sgen GC */
 #endif
 
-#if !defined(HOST_WIN32)
-
-/*
- * Both Boehm and SGEN needs to intercept some thread operations. So instead of the
- * pthread_... calls, runtime code should call these wrappers.
- */
-
-/* pthread function wrappers */
-#include <pthread.h>
-#include <signal.h>
-
-int mono_gc_pthread_create (pthread_t *new_thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg);
-int mono_gc_pthread_join (pthread_t thread, void **retval);
-int mono_gc_pthread_detach (pthread_t thread);
-void mono_gc_pthread_exit (void *retval) G_GNUC_NORETURN;
-
-#endif
-
 #endif