diff options
author | Bert Deknuydt <Bert.Deknuydt@esat.kuleuven.ac.be> | 2003-06-05 17:43:58 +0200 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2003-06-05 15:43:58 +0000 |
commit | ad23ad2cbe2d00b1f4daf87c3b8caa5166fdc81f (patch) | |
tree | 781cd06c85dbc4fad44520a43d5120281dd9ba11 /libjava/include | |
parent | 2ffc3e73b5108ea7fcb9d9a10c056360e0d288bb (diff) | |
download | gcc-ad23ad2cbe2d00b1f4daf87c3b8caa5166fdc81f.zip gcc-ad23ad2cbe2d00b1f4daf87c3b8caa5166fdc81f.tar.gz gcc-ad23ad2cbe2d00b1f4daf87c3b8caa5166fdc81f.tar.bz2 |
posix-threads.h: Include <machine/pal.h> on OSF.
2003-06-05 Bert Deknuydt <Bert.Deknuydt@esat.kuleuven.ac.be>
* include/posix-threads.h: Include <machine/pal.h> on OSF.
From-SVN: r67491
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/posix-threads.h | 4 |
1 files changed, 3 insertions, 1 deletions
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 |