This is the mail archive of the java-prs@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libgcj/13212] JNI/CNI AttachCurrentThread does not register thread with garbage collector



------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]