]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Ensure std::thread helpers have internal linkage
authorJonathan Wakely <jwakely@redhat.com>
Wed, 20 Apr 2016 14:30:33 +0000 (15:30 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 20 Apr 2016 14:30:33 +0000 (15:30 +0100)
Backport from mainline
2016-04-05  Jonathan Wakely  <jwakely@redhat.com>

PR libstdc++/70503
* src/c++11/thread.cc (execute_native_thread_routine,
execute_native_thread_routine_compat): Give internal linkage.
* testsuite/30_threads/thread/70503.cc: New test.

From-SVN: r235284

libstdc++-v3/ChangeLog
libstdc++-v3/src/c++11/thread.cc
libstdc++-v3/testsuite/30_threads/thread/70503.cc [new file with mode: 0644]

index 39b0558cd2f6ee070349a8f9499df3d3d4ab4bd8..1a23632d338aa687abf47584829a9b699f330d50 100644 (file)
@@ -1,3 +1,13 @@
+2016-04-20  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backport from mainline
+       2016-04-05  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/70503
+       * src/c++11/thread.cc (execute_native_thread_routine,
+       execute_native_thread_routine_compat): Give internal linkage.
+       * testsuite/30_threads/thread/70503.cc: New test.
+
 2016-03-18  Jonathan Wakely  <jwakely@redhat.com>
 
        Backport from mainline
index 49aacb5a96da34f58d5c9c2b5a499c7435bdf4c5..d65744893764d18333ecc357f1573f671924d48c 100644 (file)
@@ -70,9 +70,9 @@ static inline int get_nprocs()
 
 namespace std _GLIBCXX_VISIBILITY(default)
 {
-  namespace
+  extern "C"
   {
-    extern "C" void*
+    static void*
     execute_native_thread_routine(void* __p)
     {
       thread::_Impl_base* __t = static_cast<thread::_Impl_base*>(__p);
@@ -94,7 +94,7 @@ namespace std _GLIBCXX_VISIBILITY(default)
 
       return 0;
     }
-  }
+  } // extern "C"
 
 _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
diff --git a/libstdc++-v3/testsuite/30_threads/thread/70503.cc b/libstdc++-v3/testsuite/30_threads/thread/70503.cc
new file mode 100644 (file)
index 0000000..3b64ef8
--- /dev/null
@@ -0,0 +1,38 @@
+// Copyright (C) 2016 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
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-do link }
+// { dg-options "-std=gnu++11 -static" { target *-*-*gnu* } }
+// { dg-require-cstdint "" }
+// { dg-require-gthreads "" }
+// { dg-require-effective-target static }
+
+#include <thread>
+
+extern "C" {
+  // Should not get multiple definition errors from libstdc++.a(thread.o)
+  void execute_native_thread_routine(void) { }
+  void execute_native_thread_routine_compat(void) { }
+}
+
+int main()
+{
+  execute_native_thread_routine();
+  execute_native_thread_routine_compat();
+
+  std::thread{}.detach();  // ensure libstdc++.a(thread.o) is linked in
+}