aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc
diff options
context:
space:
mode:
authorAndreas Tobler <a.tobler@schweiz.ch>2004-08-16 18:32:26 +0200
committerAndreas Tobler <andreast@gcc.gnu.org>2004-08-16 18:32:26 +0200
commit461b08b8bccb49c3077a5f9c36759fddafdcd102 (patch)
tree0211e8fc4a09cf4abec759ade73f8c14c4f032d8 /boehm-gc
parentdffc9ae5a984b8f12174d7b765a14d714843e45b (diff)
downloadgcc-461b08b8bccb49c3077a5f9c36759fddafdcd102.zip
gcc-461b08b8bccb49c3077a5f9c36759fddafdcd102.tar.gz
gcc-461b08b8bccb49c3077a5f9c36759fddafdcd102.tar.bz2
solaris_threads.c: Remove ifdef around #include "private/gc_priv.h" since they're not known at...
2004-08-16 Andreas Tobler <a.tobler@schweiz.ch> * solaris_threads.c: Remove ifdef around #include "private/gc_priv.h" since they're not known at this time. * solaris_pthreads.c: Likewise. From-SVN: r86062
Diffstat (limited to 'boehm-gc')
-rw-r--r--boehm-gc/ChangeLog6
-rw-r--r--boehm-gc/solaris_pthreads.c5
-rw-r--r--boehm-gc/solaris_threads.c5
3 files changed, 9 insertions, 7 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog
index c9281e7..c7895ba 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,3 +1,9 @@
+2004-08-16 Andreas Tobler <a.tobler@schweiz.ch>
+
+ * solaris_threads.c: Remove ifdef around #include "private/gc_priv.h"
+ since they're not known at this time.
+ * solaris_pthreads.c: Likewise.
+
2004-08-15 Andreas Tobler <a.tobler@schweiz.ch>
PR target/14931
diff --git a/boehm-gc/solaris_pthreads.c b/boehm-gc/solaris_pthreads.c
index 1e43d09..90f6005 100644
--- a/boehm-gc/solaris_pthreads.c
+++ b/boehm-gc/solaris_pthreads.c
@@ -16,9 +16,8 @@
* Modified by Peter C. for Solaris Posix Threads.
*/
-# if defined(GC_SOLARIS_PTHREADS) || defined(GC_THREADS)
-# include "private/gc_priv.h"
-# endif
+#include "private/gc_priv.h"
+
# if defined(GC_SOLARIS_PTHREADS)
# include <pthread.h>
# include <thread.h>
diff --git a/boehm-gc/solaris_threads.c b/boehm-gc/solaris_threads.c
index 0a07690..b599c58 100644
--- a/boehm-gc/solaris_threads.c
+++ b/boehm-gc/solaris_threads.c
@@ -16,10 +16,7 @@
*/
/* Boehm, September 14, 1994 4:44 pm PDT */
-# if defined(GC_SOLARIS_THREADS) || defined(GC_SOLARIS_PTHREADS) \
- || defined(GC_THREADS)
-# include "private/gc_priv.h"
-# endif
+#include "private/gc_priv.h"
# if defined(GC_SOLARIS_THREADS) || defined(GC_SOLARIS_PTHREADS)
# include "private/solaris_threads.h"