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

From-SVN: r51383
This commit is contained in:
Loren J. Rittle 2002-03-26 11:26:13 +00:00 committed by Loren J. Rittle
parent 8e5fe23fb3
commit b4a19310cd
2 changed files with 9 additions and 0 deletions

View 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

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;