This is the mail archive of the
java-prs@gcc.gnu.org
mailing list for the Java project.
[Bug libgcj/13212] JNI/CNI AttachCurrentThread does not register thread with garbage collector
- From: "matz at suse dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: java-prs at gcc dot gnu dot org
- Date: 25 Mar 2006 01:07:42 -0000
- Subject: [Bug libgcj/13212] JNI/CNI AttachCurrentThread does not register thread with garbage collector
- References: <bug-13212-7355@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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