diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2002-03-26 11:26:13 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2002-03-26 11:26:13 +0000 |
commit | b4a19310cd8448a0c61740368ee1030ef671d3d3 (patch) | |
tree | 602f28f2ddc1a3d78db4767ca1f26f25ab37e8c6 /libjava/include/posix-threads.h | |
parent | 8e5fe23fb3a2296d7834907a59a5663baa2b9078 (diff) | |
download | gcc-b4a19310cd8448a0c61740368ee1030ef671d3d3.zip gcc-b4a19310cd8448a0c61740368ee1030ef671d3d3.tar.gz gcc-b4a19310cd8448a0c61740368ee1030ef671d3d3.tar.bz2 |
* include/posix-threads.h: Support <.../pal.h> on FreeBSD/alpha.
From-SVN: r51383
Diffstat (limited to 'libjava/include/posix-threads.h')
-rw-r--r-- | libjava/include/posix-threads.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libjava/include/posix-threads.h b/libjava/include/posix-threads.h index 79961c2..c74e26e 100644 --- a/libjava/include/posix-threads.h +++ b/libjava/include/posix-threads.h @@ -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; |