diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-21 12:33:34 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-21 12:33:34 +0000 |
commit | 05caec57fee5b8aa249b286d35b4775f764ab7d6 (patch) | |
tree | b9bd62695f02479a7dc88b9c3200b1bcbc785c4d /gcc/gthr.h | |
parent | b8f6cfa7a8f1ed46ef503115fa195c97ac777978 (diff) | |
download | gcc-05caec57fee5b8aa249b286d35b4775f764ab7d6.tar.gz |
gcc:
* gthr-solaris.h: Remove.
* gthr.h (_SOLARIS_THREADS): Don't include gthr-solaris.h, remove.
* config/sol2.h (CPP_SUBTARGET_SPEC): Remove -threads support.
(LIB_SPEC): Likewise.
* config/sol2.opt (threads): Remove.
* config.gcc (i[34567]86-*-solaris2*): Remove solaris threads
support.
(sparc*-*-solaris2*): Likewise.
* configure.ac (enable_threads): Enable solaris support.
* configure: Regenerate.
* doc/invoke.texi (Option Summary, Solaris 2 Options): Remove
-threads.
* doc/install.texi (Configuration, --enable-threads=lib): Remove
solaris.
boehm-gc:
* configure.ac (THREADS): Remove solaris.
* configure: Regenerate.
libjava:
* configure.ac (THREADS): Remove solaris.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171229 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gthr.h')
-rw-r--r-- | gcc/gthr.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/gthr.h b/gcc/gthr.h index 6edfbcd69c3..0752f893c4f 100644 --- a/gcc/gthr.h +++ b/gcc/gthr.h @@ -1,6 +1,7 @@ /* Threads compatibility routines for libgcc2. */ /* Compile this one with gcc. */ -/* Copyright (C) 1997, 1998, 2004, 2008, 2009 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 2004, 2008, 2009, 2011 + Free Software Foundation, Inc. This file is part of GCC. @@ -136,7 +137,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see POSIX/Unix98 threads with -D_PTHREADS POSIX/Unix95 threads with -D_PTHREADS95 DCE threads with -D_DCE_THREADS - Solaris/UI threads with -D_SOLARIS_THREADS */ @@ -149,8 +149,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "gthr-posix95.h" #elif _DCE_THREADS #include "gthr-dce.h" -#elif _SOLARIS_THREADS -#include "gthr-solaris.h" /* Include GTHREAD_FILE if one is defined. */ #elif defined(HAVE_GTHR_DEFAULT) |