From 975147a4a4a970261d30905dcf7e3fd683ce119f Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 14 Sep 2006 18:06:04 +0000 Subject: re PR boehm-gc/29068 (Bootstrap fails building libjava on SPARC/Solaris) libjava PR boehm-gc/29068: * boehm.cc (_Jv_GCAttachThread): Disable on Solaris. (_Jv_GCDetachThread): Likewise. boehm-gc PR boehm-gc/29068. * misc.c (GC_init_inner): Don't use GC_get_thread_stack_base on Solaris. From-SVN: r116948 --- libjava/boehm.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libjava/boehm.cc') diff --git a/libjava/boehm.cc b/libjava/boehm.cc index f96128e..2e38295 100644 --- a/libjava/boehm.cc +++ b/libjava/boehm.cc @@ -701,7 +701,8 @@ _Jv_GCAttachThread () { // The registration interface is only defined on posixy systems and // only actually works if pthread_getattr_np is defined. -#ifdef HAVE_PTHREAD_GETATTR_NP + // FIXME: until gc7 it is simpler to disable this on solaris. +#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS) GC_register_my_thread (); #endif } @@ -709,7 +710,7 @@ _Jv_GCAttachThread () void _Jv_GCDetachThread () { -#ifdef HAVE_PTHREAD_GETATTR_NP +#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS) GC_unregister_my_thread (); #endif } -- cgit v1.1