From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31631 invoked by alias); 25 Mar 2006 01:07:43 -0000 Received: (qmail 31610 invoked by uid 48); 25 Mar 2006 01:07:42 -0000 Date: Sat, 25 Mar 2006 01:07:00 -0000 Message-ID: <20060325010742.31609.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug libgcj/13212] JNI/CNI AttachCurrentThread does not register thread with garbage collector In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: java-prs@gcc.gnu.org From: "matz at suse dot de" Mailing-List: contact java-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-prs-owner@gcc.gnu.org X-SW-Source: 2006-q1/txt/msg00421.txt.bz2 List-Id: ------- Comment #29 from matz at suse dot de 2006-03-25 01:07 ------- There is a minor glitch in the patch from Richard, which went in when cleaning it up. This line: + __asm__ (".symver pthread_create, pthread_create@@" GC_PTHREAD_SYM_VERSION); which creates the right version of the overriding symbol actually needs to read + __asm__ (".symver GC_pthread_create,pthread_create@@"GC_PTHREAD_SYM_VERSION); as that is how the function now is called. regtesting of libjava with that change in the patch on x86_64 looks good now (it doesn't with the patch as posted). -- matz at suse dot de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |matz at suse dot de http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13212