diff options
author | Paolo Carlini <pcarlini@suse.de> | 2007-03-02 16:21:30 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2007-03-02 16:21:30 +0000 |
commit | 1769232d2607e9219b1932090c1036a6ed334152 (patch) | |
tree | e52eaced466cf7de7cf45af492ba4bcb23c5d65c /libstdc++-v3/testsuite/thread/pthread5.cc | |
parent | 7393f7f8d04844ab976238ceffcc8f8c00214c92 (diff) | |
download | gcc-1769232d2607e9219b1932090c1036a6ed334152.zip gcc-1769232d2607e9219b1932090c1036a6ed334152.tar.gz gcc-1769232d2607e9219b1932090c1036a6ed334152.tar.bz2 |
re PR libstdc++/28080 (header dependencies)
2007-03-02 Paolo Carlini <pcarlini@suse.de>
* testsuite/thread/pthread1.cc: Include <pthread.h>.
* testsuite/thread/pthread2.cc: Likewise.
* testsuite/thread/pthread3.cc: Likewise.
* testsuite/thread/pthread4.cc: Likewise.
* testsuite/thread/pthread5.cc: Likewise.
* testsuite/thread/pthread6.cc: Likewise.
* testsuite/thread/pthread7-rope.cc: Likewise.
2007-03-02 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/28080 (partial)
* include/tr1/random (class random_device): Rework to use simple
<cstdio> input, do not include <fstream>.
* include/tr1/random.tcc (all inserters and extractors): Refer
to ios_base as base class of basic_istream or basic_ostream.
From-SVN: r122478
Diffstat (limited to 'libstdc++-v3/testsuite/thread/pthread5.cc')
-rw-r--r-- | libstdc++-v3/testsuite/thread/pthread5.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libstdc++-v3/testsuite/thread/pthread5.cc b/libstdc++-v3/testsuite/thread/pthread5.cc index 189c8a5..4d5aac4 100644 --- a/libstdc++-v3/testsuite/thread/pthread5.cc +++ b/libstdc++-v3/testsuite/thread/pthread5.cc @@ -2,7 +2,8 @@ // Adpated from libstdc++/5464 submitted by jjessel@amadeus.net // Jean-Francois JESSEL (Amadeus SAS Development) // -// Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +// Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -27,9 +28,7 @@ #include <vector> #include <list> #include <string> - -// Do not include <pthread.h> explicitly; if threads are properly -// configured for the port, then it is picked up free from STL headers. +#include <pthread.h> #ifdef _GLIBCXX_HAVE_UNISTD_H #include <unistd.h> // To test for _POSIX_THREAD_PRIORITY_SCHEDULING |