From 169bb110d313303d04b411f5251317a6745c8b73 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 11 Oct 2004 10:49:39 -0700 Subject: posix-threads.h <__alpha__> (_Jv_ThreadId_t): Use void*. * include/posix-threads.h <__alpha__> (_Jv_ThreadId_t): Use void*. (_Jv_ThreadSelf): Use __builtin_thread_pointer. From-SVN: r88894 --- libjava/ChangeLog | 5 +++++ libjava/include/posix-threads.h | 15 ++------------- 2 files changed, 7 insertions(+), 13 deletions(-) (limited to 'libjava') diff --git a/libjava/ChangeLog b/libjava/ChangeLog index f46c283..7734e0e 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2004-10-11 Richard Henderson + + * include/posix-threads.h <__alpha__> (_Jv_ThreadId_t): Use void*. + (_Jv_ThreadSelf): Use __builtin_thread_pointer. + 2004-10-08 Bryce McKinlay * java/util/Calendar.java (set): Invalidate DST_OFFSET diff --git a/libjava/include/posix-threads.h b/libjava/include/posix-threads.h index 01606df..ccb69ad 100644 --- a/libjava/include/posix-threads.h +++ b/libjava/include/posix-threads.h @@ -241,23 +241,12 @@ _Jv_ThreadSelf (void) #ifdef __alpha__ -#ifdef __FreeBSD__ -#include -#define PAL_rduniq PAL_rdunique -#elif defined (__osf__) -#include -#else -#include -#endif - -typedef unsigned long _Jv_ThreadId_t; +typedef void *_Jv_ThreadId_t; inline _Jv_ThreadId_t _Jv_ThreadSelf (void) { - register unsigned long id __asm__("$0"); - __asm__ ("call_pal %1" : "=r"(id) : "i"(PAL_rduniq)); - return id; + return __builtin_thread_pointer (); } #define JV_SELF_DEFINED -- cgit v1.1