summaryrefslogtreecommitdiffstats
path: root/gcc45-gc-win32-threads.diff
diff options
context:
space:
mode:
Diffstat (limited to 'gcc45-gc-win32-threads.diff')
-rw-r--r--gcc45-gc-win32-threads.diff20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc45-gc-win32-threads.diff b/gcc45-gc-win32-threads.diff
deleted file mode 100644
index f295272..0000000
--- a/gcc45-gc-win32-threads.diff
+++ /dev/null
@@ -1,20 +0,0 @@
---- gcc-4.5.3/libjava/boehm.cc.orig 2012-05-29 20:37:15.802823780 -0500
-+++ gcc-4.5.3/libjava/boehm.cc 2012-05-29 20:37:48.329821290 -0500
-@@ -747,7 +747,7 @@ _Jv_GCAttachThread ()
- // The registration interface is only defined on posixy systems and
- // only actually works if pthread_getattr_np is defined.
- // FIXME: until gc7 it is simpler to disable this on solaris.
--#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS)
-+#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS) && !defined(GC_WIN32_THREADS)
- GC_register_my_thread ();
- #endif
- }
-@@ -755,7 +755,7 @@ _Jv_GCAttachThread ()
- void
- _Jv_GCDetachThread ()
- {
--#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS)
-+#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS) && !defined(GC_WIN32_THREADS)
- GC_unregister_my_thread ();
- #endif
- }