]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* include/posix-threads.h: Support <.../pal.h> on FreeBSD/alpha.
authorLoren J. Rittle <ljrittle@acm.org>
Tue, 26 Mar 2002 11:26:13 +0000 (11:26 +0000)
committerLoren J. Rittle <ljrittle@gcc.gnu.org>
Tue, 26 Mar 2002 11:26:13 +0000 (11:26 +0000)
From-SVN: r51383

libjava/ChangeLog
libjava/include/posix-threads.h

index 46a90850dee4548b712f832991cd523d7d519379..0dca16f90a166e43c988b6ab0a64c82f893e61a8 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-26  Loren J. Rittle  <ljrittle@acm.org>
+
+       * include/posix-threads.h: Support <.../pal.h> on FreeBSD/alpha.
+
 2002-03-25  Andrew Haley <aph@cambridge.redhat.com>, Hans Boehm <Hans_Boehm@hp.com>
 
        * configure.in, configure: enable dwarf2-exception-style
index 79961c23d83a399f391d4b097996bf863c8c185c..c74e26e330eca8823d4fbdc179112e54699904ed 100644 (file)
@@ -244,7 +244,12 @@ _Jv_ThreadSelf (void)
 
 #ifdef __alpha__
 
+#ifdef __FreeBSD__
+#include <machine/pal.h>
+#define PAL_rduniq PAL_rdunique
+#else
 #include <asm/pal.h>
+#endif
 
 typedef unsigned long _Jv_ThreadId_t;