diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-05 15:43:58 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-05 15:43:58 +0000 |
commit | 987dbf11bbbc4bda364d8ec38bd7752142296dce (patch) | |
tree | 781cd06c85dbc4fad44520a43d5120281dd9ba11 /libjava/include/posix-threads.h | |
parent | 60daf4cb2344cc12f13300ca1d5e68ac2c97941a (diff) | |
download | gcc-987dbf11bbbc4bda364d8ec38bd7752142296dce.tar.gz |
2003-06-05 Bert Deknuydt <Bert.Deknuydt@esat.kuleuven.ac.be>
* include/posix-threads.h: Include <machine/pal.h> on OSF.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67491 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include/posix-threads.h')
-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 e28da0b5aaf..6c8dcec933c 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 |