diff options
-rw-r--r-- | libjava/ChangeLog | 4 | ||||
-rw-r--r-- | libjava/include/posix-threads.h | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index d5af76b..f6c8479 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,7 @@ +2003-06-05 Bert Deknuydt <Bert.Deknuydt@esat.kuleuven.ac.be> + + * include/posix-threads.h: Include <machine/pal.h> on OSF. + 2003-06-03 Andrew Haley <aph@redhat.com> * include/x86_64-signal.h (MAKE_THROW_FRAME): Mark sigcontext on diff --git a/libjava/include/posix-threads.h b/libjava/include/posix-threads.h index e28da0b..6c8dcec 100644 --- a/libjava/include/posix-threads.h +++ b/libjava/include/posix-threads.h @@ -1,7 +1,7 @@ // -*- c++ -*- // posix-threads.h - Defines for using POSIX threads. -/* Copyright (C) 1998, 1999, 2001 Free Software Foundation +/* Copyright (C) 1998, 1999, 2001, 2003 Free Software Foundation This file is part of libgcj. @@ -247,6 +247,8 @@ _Jv_ThreadSelf (void) #ifdef __FreeBSD__ #include <machine/pal.h> #define PAL_rduniq PAL_rdunique +#elif defined (__osf__) +#include <machine/pal.h> #else #include <asm/pal.h> #endif |