* include/posix-threads.h: Support <.../pal.h> on FreeBSD/alpha.

From-SVN: r51720
This commit is contained in:
Loren J. Rittle 2002-04-01 23:08:40 +00:00 committed by Loren J. Rittle
parent cb0eddabd0
commit 147177f9e9
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-04-01 Loren J. Rittle <ljrittle@acm.org>
* include/posix-threads.h: Support <.../pal.h> on FreeBSD/alpha.
2002-04-01 Mark Wielaard <mark@klomp.org>
* java/util/BitSet.java (BitSet(int)): if nbits < 0 throw

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